Hi Almar,
in order to hide comments for the anonymous users you can add the following javascript to your announcement banner in JIRA
<script> jQuery().ready(function() { if(jQuery(".login-link").size()>0){ jQuery("#comment-tabpanel").hide();
} }); </script>
Hello Fabio,
will this hide all comments for all projects for anonymous users? How would it be possible to hide comments for some particular projects?
Thanks for your help!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello,
yes, it will hide comments for all projects. In order to hide comments just for specific projects you shoud add a check based on the URL (it contains project key).
<script> jQuery().ready(function() { var url = window.location.href; if(jQuery(".login-link").size()>0 && url.includes("YOUR_PROJECT_KEY_HERE")){ jQuery("#comment-tabpanel").hide(); } }); </script>
Hope it helps,
Fabio
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi,
Unfortunately this does not stop users on a mobile web browser to see comments :(
Any workaround?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Talk addon provides permissions for public spaces:
https://docs.stiltsoft.com/display/public/Talk/Managing+Permissions#ManagingPermissions-4
You could have private comments for your team.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Almar,
You can set security on comments : https://confluence.atlassian.com/display/JIRA/Commenting+on+an+Issue
In the Add comment part you can read how to set security on a comment.
Best regards,
Peter
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Oops, my mistake, I'll delete this answer.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Adding comments is a permission but every page viewer is allowed to view the comments, too. You have two possibilties. Change the velocity code in your theme or develop a plugin.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
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.