Is there a way to hide/ disable the following options from the 'Tools' dropdown menu for anonymous users:
Hi Talitha,
You can put a javascript in the Confluence Admin >> General Configuraton >> Custom HTML
to hide those element.
Here's the javascript to hide those option for annoymous user.
<script type="text/javascript"> AJS.toInit(function(){ if (AJS.params.remoteUser == ''){ AJS.$('#action-view-history-link').hide(); AJS.$('#action-export-word-link').hide(); } }); </script>
For more detailed explanation regarding the usage of javascript in the Confluence, you may refer to this documentation https://confluence.atlassian.com/display/CONFKB/How+to+Use+JavaScript+in+Confluence.
Hope this helps!
Regards,
Jing Hwa
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.