View Full Version : Admin Invisible on Who's Online...Even to other Admins!!
Chris M
05-06-2002, 02:17 PM
How would this be achieved?
I dont want certain Admins to know I am online, and be able to bug me, but I still want them to be able to see other invisible users...
Satan
Chris M
05-07-2002, 06:58 PM
Come on?
Nobody?
Satan
You really don't like your fellow admins, do you?
find in index.php
if ($loggedin['invisible'] == 1) { // Invisible User but show to Admin
$invisibleuser = '*';
}
if ($loggedin['usergroupid'] == 6 and $highlightadmin) {
$username = "<b><i>$loggedin[username]</i></b>";
and replace with
if ($loggedin['invisible'] == 1 and $loggedin['userid']==1) { // Invisible User but show to Admin
$invisibleuser = '';
} else if ($loggedin['invisible'] == 1) {
$invisibleuser = '*';
}
if ($loggedin['usergroupid'] == 6 and $highlightadmin and $loggedin['userid']==1) {
$username = "";
} else if ($loggedin['usergroupid'] == 6 and $highlightadmin) {
$username = "<b><i>$loggedin[username]</i></b>";
there you go...
Chris M
05-08-2002, 10:25 AM
Thanks...
How would I change it to my Userid?
Change the userid==1 to userid==13?
Satan
irn-bru
06-04-2002, 08:23 PM
Replace 1 with 13 :)
Chris M
06-05-2002, 01:47 AM
Lol...
This thread is quite old...
Satan
willie3wire
09-23-2002, 01:48 AM
Flaw with this solution. There's like a.. , , in place of your name, which they'd eventually pickup and as far as Whose online, you still appear there. Does anybody know how to Completely HIDE a single admin(user id =1) from Index.php AND whoseonline. Would like 2 hide from ALL admin but me.
MugenSi00
03-04-2003, 05:11 AM
worked, but still shows the "," with nothing after in the active member list and the active member count still reflects being online. Who's online still shows the location the admin is at as well. Any ideas?
MugenSi00
03-05-2003, 04:36 PM
anyone?
vBulletin® v3.8.12 by vBS, Copyright ©2000-2025, vBulletin Solutions Inc.