How to hide the username on the Online User Map Block?
The easiest way to hide the name completely would just be to change a line in getusers.php (in the online_users_map code). The line that needs changing is no 79 and change from:
$puser->fullname = fullname($puser);
To:
$puser->fullname = "";
Then the name will be hidden completely.