PDA

View Full Version : Template's title in Who's Online


Penicillin
08-21-2009, 10:19 PM
Hello
I made a custom template, but when users browsing it, the template's title isn't shown in Who's Online, it shows this instead:
Unknown Location
/vb/elibrary.php

How can I fix this?
Thanks

Lynne
08-21-2009, 11:48 PM
Create two plugins using the following hooks. Replace mypage and similar with your information.

hook online_location_process:
Code:

switch ($filename)
{
case 'mypage.php':
$userinfo['activity'] = 'mypage';
break;
// add more cases here if you have more than one custom page. no need for multiple plugins. one plugin can handle all.
}


hook online_location_unknown
Code:

switch ($userinfo['activity'])
{
case 'mypage':
$userinfo['where'] = '<a href="mypage.php?'.$vbulletin->session->vars[sessionurl].'">My Page</a>';
$userinfo['action'] = "Viewing My Page";
$handled = true;
break;
// add more cases here if you have more than one custom page. no need for multiple plugins. one plugin can handle all.
}

Penicillin
08-21-2009, 11:58 PM
It worked, thanks very much