Is there a way to remove the entry properties and metadata on the left of the browse options? I also want the metadata to be removed when viewing an entry.
Is there a way to remove the entry properties and metadata on the left of the browse options? I also want the metadata to be removed when viewing an entry.
The following code hides all of the Metadata information on the left hand side when viewing an entry. Open up "DocView.aspx" and pase the following HTML code right before the ending "</head>" tag:
<style type="text/css"> #TheFieldDisplay_DisplayDiv { display:none !important; } </style>
You may also need to add this to "DocViewM.aspx" for the mobile version.
This is sufficient if all you want is to make the interface cleaner, but it is not a good way to block viewing metadata for security reasons, as a determined user can simply use the F12 developer tools for their browser to view the CSS and un-hide the metadata.
The best way to make sure you are not sending over sensitive information is to use Laserfiche security: configure the rights to view the metadata in the admin console for the WebLink user(s).
Additionally, you can also prevent WebLink from sending metadata information to the browsers by modifying the XSL files, as described in EDM301: Advanced Web Customizations.
You might take a look at this question. It's got pointers to the recommended method for hiding things in WebLink. Also, take a look at the EMPOWER sessions EDM207 and EDM214. The slide deck should have some more useful information.
Thank you for your responses. I was able to look through the empower session and then looking through the DocView.aspx code I hid the entry's metadata. I also altered the Browse.aspx code to hide TheLeftPanel element as well so when an individual is browsing the folders the folder metadata is also not displayed.