Quote:
Originally Posted by Delphiprogrammi
you can use the same instructions as the original author provded BUT
PHP Code:
if(($user['usergroupid'] == 6) and ($bbuserinfo['usergroupid'] != 6))
{
$user['invisiblemark'] = '';
$onlinestatus = 0;
}
should be
PHP Code:
if(($user['usergroupid'] == 6) and ($vbulletin->userinfo['usergroupid'] != 6))
{
$user['invisiblemark'] = '';
$onlinestatus = 0;
}
replace all instances of $bbuserinfo['usergroupid'] to $vbulletin->userinfo['usergroupid']($bbuserinfo is an old vbulletin variable)
|
I followed the original code then applied your updates as stated, however after doing so it removes all Guest user activity. It will show the actual number of guest users, but under "Currently Active Users" they remain invisible. I applied the code in vb 3.5.3 (and now 3.5.4)