Forumlar / Cotonti / Core Labs / Seo Upgrading Title Sequence

Changing the display order of the title tag

Ross
#1 2010-01-13 20:10
I wanted my titles to be:
subject of the page -> name of the site
instead of

name of the site -> subject of the page

So I opened system/header.php and changed the following line (around line #95):

"HEADER_TITLE" => $plug_title.$out['fulltitle'],[code]

into this one:


[code]"HEADER_TITLE" => $plug_title.$out['subtitle'].' - ' .$cfg['maintitle'],

Being an absolute beginner in core coding, my question is: will I ruin anything?
donP
#2 2010-01-13 20:45
It was simplier (and without core hacks) going to:

http://www.yoursite.net/admin.php?m=config&n=edit&o=core&p=title

and changing

Header title : {MAINTITLE} - {SUBTITLE}

with

Header title : {SUBTITLE} - {MAINTITLE}

;)
in [color=#729FCF][b]BLUES[/b][/color] I trust
Ross
#3 2010-01-14 00:18
Thanks!