MyBB Community Forums

Full Version: page manager
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
How do I change the way the title looks ?

When I create a new page it shows my title wrong (opposite)

ex: About Us - Platoon United (this is how it shows)
ex2: Platoon United - About Us (this is how I want it to show)
which page manager you are using ? if it has a global template then it might be possible to edit the title
(2011-07-02, 06:20 AM)Bapun Raz Wrote: [ -> ]can't understand what you are asking Sad

Change the way my title reads at the top of tabs.

(2011-07-02, 01:18 PM)ranjani Wrote: [ -> ]which page manager you are using ? if it has a global template then it might be possible to edit the title

page manager mod (latest version): http://mods.mybb.com/view/page-manager

I am using default template (1.6)

Hope you can help with this, thanks!
open ../inc/plugins/pagemanager.php in a code editor (eg. notepad++)

around line 783 find below
<title>'.$pages['name'].' - '.$mybb->settings['bbname'].'</title>

change to:
<title>'.$mybb->settings['bbname'].' - '.$pages['name'].'</title>

save the file & refresh your page..
thank you it worked!