I want to hide view option (eye icon) from document list and details view. How can I do this?
Right-click on it, choose “Inspect”, and see the class name or id in the HTML.
Then do a “find-in-files” looking for it in a .tpl file
I resolved this with js.
$(“.tabDetailViewDFLink>.glyphicon-eye-open”).hide();