In order for secondary group memberships to have any effect on permissions, the primary group(s) in question must have this option enabled:
Admin CP -> Usergroups -> Usergroup Manager -> Edit Usergroup -> Allow Users to have Member Groups
If this option is not enabled for the primary group(s) in question, then secondary groups will have no effect on permissions.
Secondary groups still have uses even with this option disabled. For example, you might use secondary groups as flags for template conditionals. One common thing that forum admins will do is to disable banner ads for contributing members. You can create a secondary group to represent contributors, and then use code like this in your templates:
Code:
<if condition="!is_member_of($bbuserinfo, [color=red]X[/color])"> BANNER CODE HERE </if>
Leave a comment: