Yeah, I followed this article:
https://vborg.vbsupport.ru/showthrea...t=wol+location
So I made a plugin called WOL 1 and made the hook location "online_location_process" and entered in the following code:
Code:
if ($filename == 'misc.php?do=page&template=ImageHost')
{
$userinfo['activity'] = 'Image Host';
}
And another plugin called WOL 2 with a hook location of "online_location_unknown" and with the following code:
Code:
if ($userinfo['activity'] == 'Image Host')
{
$handled = true;
$userinfo['action'] = 'Viewing Image Host';
$userinfo['where'] = "<a href=\"misc.php?do=page&template=ImageHost">Image Host</a>";
}
Still no go :|
I also tried this plugin (Yeah I know it was made for vB 3.5) to see if it might work and it didn't.
https://vborg.vbsupport.ru/showthread.php?t=83247
--------------- Added [DATE]1262299089[/DATE] at [TIME]1262299089[/TIME] ---------------
I was hoping I wouldn't have to edit any php files :|