You've been invited into the Kudos (beta program) private group. Chat with others in the program, or give feedback to Atlassian.
View groupJoin the community to find out what other Atlassian users are discussing, debating and creating.
Hi Karthik,
As I know this is not possible OOTB. From current options only using a plugin is a way to do it. You can write your own or use one of the existing on Marketplace for example Community Forms that allows locking comments on specific pages - https://marketplace.atlassian.com/plugins/com.adaptavist.confluence.forums
I hope that will help.
Best Regards,
Mirek
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Do I understand correctly that this is not a "Confluence administrator" functionality, but any user with write access on the space/page can change the options?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Karthik,
You can hide the comments button using below Javascript.
<script type="text/javascript"> AJS.toInit(function(){ AJS.$('#comments-section').hide(); } </script>
You need to add this script in a html macro on a page where , you want to hide comments.
-Kapil
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.
Jan,
This will not work, because the HTML macro is severly limited in Confluence OnDemand (for security reasons).
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.
Kapil, your answer works but it has a typo. Also you need to enable html macro: 1. In Confluence go to: Admin > General Configuration > Manager Add-ons Find the 'Confluence HTML Macros' under System add-ons. Enable the 'html' module. CAUTION - this has serious security consequences. 2. Edit the page where you wish to hide comments. Insert the 'html' macro. Paste the following text into the html macro - note the extra ')' on line 4: <script type="text/javascript"> AJS.toInit(function(){ AJS.$('#comments-section').hide(); }) </script>
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Kapil,
Thanks for your updates, i add this script in a HTML comment macro on a page. But still the comment is visible.
Is there is any way to hide that comment.
Thanks,
Karthik A.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Karthik,
Can you try this script.
<script type="text/javascript"> AJS.toInit(function(){ AJS.$('#comments-section').hide(); }); for (var i=0; i<nr_li; i++) { // if the element has the class fom 'clasa' parameter if(tags_li[i].getAttribute('class') == 'innerCell'){ tags_li[i].style.overflow = 'visible'; //tags_li[i].style.overflow-y= 'visible'; } } </script>
kapil
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.
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.
is there a way to make submitted comments invisible on page until an administrator approves it?
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.
You can add the "HideElements" makro where you can choose some hideable elements like comments, likes, confluence logo, ...
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Community! We're thrilled to share that Team Calendars for Confluence is now a built-in feature for Confluence Data Center releases 7.11 and beyond. A long time favorite, Team Cale...
Connect with like-minded Atlassian users at free events near you!
Find an eventConnect with like-minded Atlassian users at free events near you!
Unfortunately there are no Community Events near you at the moment.
Host an eventYou're one step closer to meeting fellow Atlassian users at your local event. Learn more about Community Events
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.