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
PHP Code:
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>";