Here are a couple additions for the product..
What this does is fixes the WHO'S ONLINE PAGE so that it whill show that a user is using Forum Runner and give them a link to the developer website so they can get the app!
Also note, I did not phrase this as you need to add phrases to the product to do it but below is info on doing that if you wish. This requires two new plugins as follow:
-----------------------------------------------------------------------------
ADMINCP >> PLUGIN & PRODUCTS >> ADD NEW PLUGIN
Product - Forum Runner
Hook Location - online_location_process
Title - Forum Runner - WOL Online Location
Execution Order - 5
Plugin PHP Code
PHP Code:
if($filename=='/forumrunner/request.php'){
$userinfo['activity'] = 'Forum Runner';
}
Plugin Active - YES
------------------------------------------------------------------------------------------------------
ADMINCP >> PLUGIN & PRODUCTS >> ADD NEW PLUGIN
Product - Forum Runner
Hook Location - online_location_unknown
Title - Forum Runner - WOL Online Location Unknown
Execution Order - 5
Plugin PHP Code
PHP Code:
if($userinfo['activity']=='Forum Runner')
{
$userinfo['where'] = '<a href="http://www.forumrunner.net/">Forum Runner</a>';
$userinfo['action'] = 'Forum Runner';
$handled = true;
}
Plugin Active - YES
----------------------------------------------------------------------------------
Now, if these were phrased the code above could have been like this...
PHP Code:
if($userinfo['activity']=='Forum Runner')
{
$userinfo['where'] = '<a href="http://www.forumrunner.net/">'.$vbphrase[fr_forumrunner].'</a>';
$userinfo['action'] = ''.$vbphrase[fr_forumrunner].'';
$handled = true;
}
Perhaps these two plugins and phrase can be added (Add phrase as Who's Online Phrase)