Why cant I override site title in admin panel > Basic ?!

I have new 7.0.9 install and for some reason I am not able to over-ride the site page title !

I require this so that I can keep the title short in >admin panel > basic (for mail title purposes etc)

Before in line 27 in inc/header.inc.php I have this following code:-

$site['title']             = 'NAMENAMENAME';

the above code is not there in 7.0.9 ???

how can I change the page title for SEO and not effect email titles etc ??

DedicatedServer4You.com -- BIGGEST Range of Dedicated Servers at the Lowest Price!
Quote · 12 Jun 2012

$site['title'] this global variable gets its value from the input in your admin panel->basic settings

In almost all php pages you can see this

setPageTitle('Page Title');

this is the function to set the page title. So suppose in index.php page you change this

$oSysTemplate->setPageTitle($site['title']);

to this

$oSysTemplate->setPageTitle('Welcome to index page');

then your index page title will be "Welcome to index page"

Its easy to change. Good luck

so much to do....
Quote · 12 Jun 2012

 thank you very much ... I will give this a try ;)

DedicatedServer4You.com -- BIGGEST Range of Dedicated Servers at the Lowest Price!
Quote · 12 Jun 2012

I forget to mention look for something like these also

$_page['header'] = 'Page Title';

and change the title through lang key or directly your choice.

so much to do....
Quote · 12 Jun 2012

 is this needed .. the original solution seems to have worked ?!

 

I forget to mention look for something like these also

$_page['header'] = 'Page Title';

and change the title through lang key or directly your choice.

 

DedicatedServer4You.com -- BIGGEST Range of Dedicated Servers at the Lowest Price!
Quote · 12 Jun 2012

 Not everywhere, only those places where setPageTitle() is not called.

 is this needed .. the original solution seems to have worked ?!

 

I forget to mention look for something like these also

$_page['header'] = 'Page Title';

and change the title through lang key or directly your choice.

 

 

so much to do....
Quote · 12 Jun 2012
 
 
Below is the legacy version of the Boonex site, maintained for Dolphin.Pro 7.x support.
The new Dolphin solution is powered by UNA Community Management System.