Quote:
Originally Posted by wtatech
Does the primary group need to be moderator or admin for this to work? We have a default primary group, and then admins, mods, etc get their permissions from additional usergroups.
|
Looking at the code, indeed that seems to be the case. If you need secondary groups you can try this edit.
In the Template plugin-
Look for-
Code:
if (in_array($vbulletin->userinfo['usergroupid'], $ids))
and change it to
Code:
if (is_member_of($vbulletin->userinfo, $ids))
Haven't tested this but it should show up to secondary usergroups with this edit.