How to get ride of the two :: in title of concrete sites

Permalink
Anyone know how to remove or replace the :: on title bar of the concrete sites? Where is that rendered? Just-in-case you don't know what I'm talking about I'll attached a screenshot.
1 Attachment

Tags:

remove ::
View Replies: View Best Answer
andrew replied on at Permalink Best Answer Reply
andrew
Yep. You can change how page title's are built using a special define() function in your site's config/site.php. The default mask is

define('PAGE_TITLE_FORMAT', '%1$s :: %2$s');

With the first parameter being the site name and the second being the page. So if you changed it to

define('PAGE_TITLE_FORMAT', '%2$s');

You'd just get page title names. If you changed it to

define('PAGE_TITLE_FORMAT', '%1$s - %2$s');

you'd replace the :: with -. Etc...
luan replied on at Permalink Reply
that's really cool. thank you.