We need the ability to disable the in-line Comments "feature" in Confluence for signed-off, approved documents that are used for compliance. People are messing with the docs themselves, and this is deadly for official procedures that are in daily use. This "feature" should be locked out when the doc is restricted to certain editors!! Those with read-only access should be restricted to making comments in the Comments field at the bottom of the wiki page and not be allowed to make in-line Comments of this sort. It confuses and counfounds the Operations people using the Procedures, and renders the doc NOT IN COMPLIANCE when auditors come calling. This is a serious liability.
Here is a user macro which you can use to prevent those with read-only access from making inline comments:
## @noparams #if(!$permissionHelper.canEdit($userAccessor.getUserIfAvailable($req.remoteUser),$content)) <style> button[data-key*=inline-comment] { visibility:hidden; } </style> #end
You can make sure it gets put on every page by saving it as a user macro and including a reference to the macro in wiki markup format (i.e. {mymacro}) in either the header or footer textbox in the Header, Footer, Sidebar part of the Look and Feel section in the Space options (for one space) or the global options (for all spaces).
Hi Stephen,
thank you for this trick.
Unfortunately this will leave you will some empty space in the bubble:
image2017-1-17 15:27:47.png
If you are changing your code to display:none
it should look normal:
## @noparams #if(!$permissionHelper.canEdit($userAccessor.getUserIfAvailable($req.remoteUser),$content)) <style> button[data-key*=inline-comment] { display:none !important;} </style> #end
We are currently using just the inner part <style>...</style>
in the Confluence user defined CSS-Section.
This will disallow creating new comments all together, as we have just migrated to Talk.
Best regards,
Tobias
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.