MyBB Hacks

Full Version: Show content to Usergroup regardless Of Additional group
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello,

Code:
<if 
$mybb->usergroup['gid'] == 9 |
$mybb->usergroup['gid'] == 4 |
$mybb->usergroup['gid'] == 3 | 
$mybb->usergroup['gid'] == 11 
then> 
Any content 
</if>


This code work great but if user as an additional group that don't work....

So ,is it a way to give show content to  usergroups 3/4/9/11 regardless of their Additional group please ?
(because, I use "Subscriptions" plugin for "Newpoints" Mod (this plugin can upgrade member giving an additionalgroups ))


"Additionalgroups" and "Usergroup" are separated...don't understand how it works :/
Thanks

Assumming is_member is allowed and you are using MyBB 1.8:

Code:
<if is_member('9,4,3,11') then>YES!</if>

Reference URL's