It's still the same.
I think it may be because I am not sure where to actually put the new bit though to be honest. I've tried it everywhere. If it's here
Code:
if (($vbulletin->options['displayloggedin'] == 1 OR $vbulletin->options['displayloggedin'] == 2 AND is_member_of($bbuserinfo,5,6,7) OR ($vbulletin->options['displayloggedin'] > 2 AND $vbulletin->userinfo['userid'])) AND !$show['search_engine'])
the page just follows the vboptions setting - either all see it or no-one sees it.
put it here
Code:
if (($vbulletin->options['displayloggedin'] == 1 OR $vbulletin->options['displayloggedin'] == 2 OR ($vbulletin->options['displayloggedin'] > 2 AND $vbulletin->userinfo['userid']) AND is_member_of($bbuserinfo,5,6,7)) AND !$show['search_engine'])
the same
here
Code:
if (($vbulletin->options['displayloggedin'] == 1 OR $vbulletin->options['displayloggedin'] == 2 OR ($vbulletin->options['displayloggedin'] > 2 AND $vbulletin->userinfo['userid'])) AND is_member_of($bbuserinfo,5,6,7) AND !$show['search_engine'])
and nobody sees it at all even if it is switched on in options
I must be doing something wrong some where.