The $lang examples I'm going to use may be different than what you are going to use, but I think you'll get the idea behind this.
For example, I want to add "Viewing Maps" to my Who Is Online.
My "maps" page is located at /maps.php.
Open: ip_root/language/your_language/lang_main.php
FIND:
//====================================================
// Do not insert anything below this line
//====================================================
// Do not insert anything below this line
//====================================================
BEFORE, ADD:
(Don't forget to change some code below!)
I believe the $lang variable can be anything you want it to be as long as you make sure you call it up correctly in the next file you edit. Change 'Viewing_Maps' to whatever variable you wish.
$lang['Viewing_Maps']
This will be the text that shows when viewing Who Is Online. Change it to whatever you want.
= 'Viewing Maps'
$lang['Viewing_Maps']
This will be the text that shows when viewing Who Is Online. Change it to whatever you want.
= 'Viewing Maps'
Open: ip_root/includes/functions_mg_online.php
FIND:
elseif (strpos($page_id, 'viewonline.' . $phpEx) !== false)
{
$location['lang'] = $lang['Viewing_online'];
$location['url'] = 'viewonline.' . $phpEx;
return $location;
}
{
$location['lang'] = $lang['Viewing_online'];
$location['url'] = 'viewonline.' . $phpEx;
return $location;
}
AFTER, ADD:
(Don't forget to change some code below!)
elseif (strpos($page_id, 'maps.' . $phpEx) !== false)
{
$location['lang'] = $lang['Viewing_Maps'];
$location['url'] = 'maps.' . $phpEx;
return $location;
}
{
$location['lang'] = $lang['Viewing_Maps'];
$location['url'] = 'maps.' . $phpEx;
return $location;
}
Change 'maps.' in: elseif (strpos($page_id, 'maps.' . $phpEx) !== false) to whatever suits your needs.
Change Viewing_Maps to whatever variable you named it in lang_main.php.
$location['lang'] = $lang['Viewing_Maps'];
The $location['url'] should match the URL you wish to show in Who Is Online:
$location['url'] = 'maps.' . $phpEx;
Change Viewing_Maps to whatever variable you named it in lang_main.php.
$location['lang'] = $lang['Viewing_Maps'];
The $location['url'] should match the URL you wish to show in Who Is Online:
$location['url'] = 'maps.' . $phpEx;