Changing format of Page Titles

Permalink
Hi All,

Anyone know how to change the default page title structure with 5.7?

juddc
 
MrKDilkington replied on at Permalink Best Answer Reply
MrKDilkington
Hi juddc,

In your application/config directory, create a file named "concrete.php"

In this file, add this:
<?php
return array(
    'seo' => array(
        'title_format'         => '%1$s - %2$s',
    )
);


Where the placeholders are the site and the page title, respectively.

http://www.concrete5.org/community/forums/5-7-discussion/c57-title-...
juddc replied on at Permalink Reply
juddc
Thanks - I knew I'd seen it somewhere before - couldn't find it. Much appreciated!