I included column macros in Confluence pages and I would like to know if it is possible to restrict the content of a column macro to some users only? I use the column macro to insert buttons on pages and I need to restrict the viewing of some buttons. Any idea?
Use the Visibility Plugin.
Hi,
We tried to use the Visibility Plugin and we got an error message: The license could not be verified: There is no license certificate installed for CustomWare Visibility Plugin for Confluence.
We don't understand as it is a free plugin.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Contact ServiceRocket (formerly CustomWare).
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You have to go to ServiceRocket's site and create an account to get the free license.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
It would be hard to filter by groups, but if it is only a few users that you want to restrict or allow, you can use this user macro that will filter by username.
For each of these macros, select "Rendered" for Macro Body Processing.
This macro will restrict viewing to only those usernames that you enter in the options:
## @param allowedusers:title=Allowed Users|type=string|desc=Users allowed to view #if($paramallowedusers.contains($action.remoteUser.getName())) $body #end
This macro will allow viewing by all usernames except those that you enter in the options:
## @param blockedusers:title=Blocked Users|type=string|desc=Users to block from viewing #if(!$paramblockedusers.contains($action.remoteUser.getName())) $body #end
Just insert the content you want to restrict in the body of the macro, and put the usernames that you want to restrict in the macro options (you can separate the usernames by spaces, commas, whatever you want). Hope that helps!
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.