Sorry to bump this. Would a modification to the following line in the online.php file be the way to go? I'm just not sure how to adjust this for an entire usergroup...
$userinfo["{$vbulletin->userinfo['userid']}"]['location'] = '/online.php';
PHP Code:
if (!$foundviewer AND $vbulletin->userinfo['userid'] AND ($vbulletin->GPC['who'] == '' OR $vbulletin->GPC['who'] == 'members'))
{ // Viewing user did not show up so fake him
construct_im_icons($vbulletin->userinfo);
$userinfo["{$vbulletin->userinfo['userid']}"] = $vbulletin->userinfo;
$userinfo["{$vbulletin->userinfo['userid']}"]['location'] = '/online.php';
$userinfo["{$vbulletin->userinfo['userid']}"]['host'] = IPADDRESS;
$userinfo["{$vbulletin->userinfo['userid']}"]['lastactivity'] = TIMENOW;
fetch_musername($userinfo["{$vbulletin->userinfo['userid']}"]);
$userinfo["{$vbulletin->userinfo['userid']}"]['hidden'] = iif($vbulletin->userinfo['invisible'], '*');
$userinfo["{$vbulletin->userinfo['userid']}"]['invisible'] = 0;
And if not, would it be easier to hide all admins and supermods completely from the WOL page rather than hide just their location? I'm trying to work through this and not having the greatest luck. Hopefully, I'm missing something minor. Any sort of guidance would be greatly appreciated. Thanks!