Is there a way (can you tell me how?) to remove the links that are displayed in the WOL display?
upd: Figured it out and thanks Paul for all of the great stuff you provide us all!
for those that care to know, and don't know, the way I did it was so simple I had to laugh..
To get rid of the link in the who's online display when a user in in flashchat you need to modify the plugin called 'online_location_unknown' in the plugin manager in adminCP of vBulletin.
Remove the code below in red.
Code:
if ($userinfo['activity'] == 'flashchat')
{
$handled = true;
$userinfo['action'] = $vbphrase['in_flashchat'];
$userinfo['where'] = '<a href="misc.php?do=flashchat">'.$vbulletin->options['bburl'].'/misc.php?do=flashchat</a>';
}