how to create custom pages with custom usergroup permissions?

Nanana

New Member
I've been making some custom pages recently and I was wondering, is there any way that I can make them have specific usergroup permissions, like I would with a specific forum?
 
Try wrapping your link in this:
Code:
<if condition="is_member_of($vbulletin->userinfo, 1, 2, 3)">
YOUR LINK
</if>

And replace "1, 2, 3" with the usergroups want to show to.
 
Back
Top