Hello,
I have this working on my site, and I am running 3.0.5. This is how I did it.
In INCLUDES / function_online.php find:
PHP Code:
default:
$userinfo['activity'] = 'unknown';
Below that add:
PHP Code:
}
if ($userinfo[userid]==1) {
$userinfo[activity] = 'Admin';
}
(Change the userid to match your userid. Default is 1)
In the same file, now find:
PHP Code:
case 'bugs':
$userinfo['action'] = construct_phrase($vbphrase['viewing_x'], 'Bugs'); // Don't report 'bugs' as needing to be translated please :p
break;
Below that add:
PHP Code:
case 'Admin':
$userinfo[where] = "Just monitoring HC, $bbuserinfo[username]!";
break;
You can change "Just monitoring HC to whatever you like. The $bbuserinfo[username] inserts the name of which ever member is viewing it.
Save the edits and upload.
This is a screenshot of how it appears on my site.