What FDRS suggested is practically the same as what you suggested Jase2.
Off the top of my head I think the snippet is something like this, in global.php:
PHP Code:
if($vbulletin->userinfo['userid'])
{
$show['member'] = true;
$show['guest'] = false;
}
else
{
$show['member'] = false;
$show['guest'] = true;
}
So either way they are practically identical ways of achieving the same outcome