Quote:
Originally Posted by 1Unreal
Yes but restricting a forum would be easier than a custom page. You would probably have to create a plugin to password protect a custom page. I don't think you could do it with just conditionals.
|
It's pretty easy actually:
PHP Code:
if (!isset($vbulletin->userinfo['userid']) OR $vbulletin->userinfo['userid'] == 0 OR !is_member_of($vbulletin->userinfo,x,y,z))
{
print_no_permission();
}
That keeps out all unregistered users and also all users that are not a member of x,y, or z.