Quote:
Originally Posted by rchelifan
I just needed </if> at the end of the code.
How about if I want more than just want groups, do I just add a coma and the group ID to it?
|
Code:
<if condition="is_member_of($vbulletin->userinfo, 1, 2, 3)"><td class="vbmenu_control"><a href="chatbox.php">Chatbox</a></td></if>
The above code is more efficient. Just change it to the usergroups you want to allow.Although remember that if you use the Automatic Navbar edit, that the groups you disallowed won't see the navbar, but again if you don't like where it would place the navigational link, then the above code would work as well.
If you wanted to just allow all groups, but disallow only certain groups just use this code:
Code:
<if condition="!is_member_of($vbulletin->userinfo, 1, 2, 3)"><td class="vbmenu_control"><a href="chatbox.php">Chatbox</a></td></if>