That works great, but is there a way to set it for access from multiple usergroups? ie, Members are usergroup 9 and Admins are usergroup 6. I've tried it as
PHP Code:
if ($vbulletin->userinfo['usergroupid'] == '9' )
and
PHP Code:
if ($vbulletin->userinfo['usergroupid'] == '9,6' )
and
PHP Code:
if ($vbulletin->userinfo['usergroupid'] == '9','6' )
None of those seemed to work.