Changing the display order of the title tag
Ross |
|
---|---|
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 |
|
---|---|
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 |
|
---|---|
Thanks!
|