Quote:
Originally Posted by Dismounted
In the plugin 'Guest Check', find:
PHP Code:
if (($show['guest']) AND (!$bot) AND ($post['postcount'] == 1) AND ($gfpo == 1))
Replace With:
PHP Code:
if (($show['guest']) AND (is_member_of($vbulletin->userinfo, 3)) AND (!$bot) AND ($post['postcount'] == 1) AND ($gfpo == 1))
Find:
PHP Code:
elseif ((!$show['guest']) OR ($bot) OR ($gfpo == 0))
Replace With:
PHP Code:
elseif ((!$show['guest']) OR (!is_member_of($vbulletin->userinfo, 3)) OR ($bot) OR ($gfpo == 0))
|
Fab - thanks for that, I'll try it out later