Icy Phoenix

     
 


Post new topic  Reply to topic 
Page 1 of 1
 
 
Reply with quote Download Post
Post CUSTOMIZATION - Add New Location In Who Is Online 
 
Have you created a new page in your Icy Phoenix, but don't want it to say "Home" when someone is viewing that page?  I get tired of seeing that when I click Who Is Online, so here is a fix.

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:

Code: [Download] [Hide] [Select]
//====================================================
// Do not insert anything below this line
//====================================================


BEFORE, ADD:

(Don't forget to change some code below!)

Code: [Download] [Hide] [Select]
$lang['Viewing_Maps'] = 'Viewing Maps';


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'


Open: ip_root/includes/functions_mg_online.php

FIND:

Code: [Download] [Hide] [Select]
    elseif (strpos($page_id, 'viewonline.' . $phpEx) !== false)
    {
        $location['lang'] = $lang['Viewing_online'];
        $location['url'] = 'viewonline.' . $phpEx;
        return $location;
    }


AFTER, ADD:

(Don't forget to change some code below!)

Code: [Download] [Hide] [Select]
    elseif (strpos($page_id, 'maps.' . $phpEx) !== false)
    {
        $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;

 




____________
| Icy Phoenix ColorizeIt! |
Bipolar Disorder - Not good for you and definitely not good for everyone else.
 
ChaoticSend private messageVisit poster's website  
Back to topPage bottom
Icy Phoenix is an open source project, you can show your appreciation and support future development by donating to the project.

Support us
 
Post new topic  Reply to topic  Page 1 of 1
 


Display posts from previous:    

HideWas this topic useful?

Link this topic
URL
BBCode
HTML




 
Permissions List
You cannot post new topics
You cannot reply to topics
You cannot edit your posts
You cannot delete your posts
You cannot vote in polls
You cannot attach files
You can download files
You cannot post calendar events


  

 

  cron