Usergroup style permissions

Autonamus

Active member
I would like to have a specific usergroup be able to access a test/VIP style without members and anyone not in the group to see the default and not be able to see it in the style chooser
 
There's no real good way to do this to be honest, styles aren't permission based.

You can custom code in the style switcher to only show to certain user groups doing something like this:


How can I show content to a specific user group?
<xen:if is="{xen:helper ismemberof, $visitor, x}">
This content will show to members of user group x
</xen:if>
 
Top Bottom