Quote:
Originally Posted by Vaupell
Seeing alot of these after ive made some costum vb pages on my own..
basicly when a user is viewing them, its says unknown location..
Attachment 107683
any ideas what i forgot to do ? : p
the pages work, and everything is just fine.. just the online list looks weird..
|
Have you added the following plugins?
Code:
hook: online_location_proccess
if ($filename == 'Conversion.php')
{
$userinfo['activity'] = 'conversion';
}
hook: online_location_unknown
if ($userinfo['activity'] == 'conversion')
{
$handled = true;
$userinfo['action'] = "This user is on the conversion page";
$userinfo['where'] = "<a href=\"Conversion.php" . $vbulletin->session->vars['sessionurl_q'] . "\">Conversion Page</a>";
}