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

 
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.
thereikilounge replied on at Permalink Reply
thereikilounge
Can you proved the location to where this would be changed..

I am not finding it anywhere.

Thank you

mysite.com/???/???/???
adajad replied on at Permalink Reply
adajad
As Andrew said, you can find it in 'config/site.php'.

You need to login to your hosting account and edit the .php file.