I hope you dont mind but I added a couple plugins to the online functions
so it doesnt show up as Unknown Location in the user profile and WOL.
Plugins & Products --> Add New Plugin
Plugin Number 1
Product: vbFMemberIndex
Hook Location: vBulletin; Who's Online? --> online_location_process
Title: WOL 1
Plugin PHP Code:
PHP Code:
if ($filename == 'memberindex.php')
{
$userinfo['activity'] = 'memberindex';
}
Plugin is Active: Yes
Plugin Number 2
Product: vbFMemberIndex
Hook Location: vBulletin; Who's Online? --> online_location_unknown
Title: WOL 2
Plugin PHP Code:
PHP Code:
if ($userinfo['activity'] == 'memberindex')
{
$userinfo['action'] = 'Viewing Member Index';
$userinfo['where'] = '<a href="./memberindex.php?' . $vbulletin->session->vars['sessionurl'] . '">vbFMemberIndex</a>';
$handled = true;
}
Plugin is Active: Yes
Attachment 75715
Attachment 75716