How can I change default Page Title?

Permalink
Hi.
As you know, title of page usually has duplicated from 'meta title'.

But this field is empty, then we see title of the page like:
TITLE_OF_THE_SITE :: NAME_OF_THE_PAGE

For example, if your site's name is 'The best tyres' and current page's name is 'Goodyear' then by default you will see in your browser the title of this page:
'The best tyres :: Goodyear'

How can I change this order? I'd like to see the name of the page first, and then - title of the site? I'd like to see:
Goodyear :: The best tyres.

How can I do it?

 
hutman replied on at Permalink Best Answer Reply
hutman
In your /config/site.php you can add this to switch it around

define('PAGE_TITLE_FORMAT', '%2$s :: %1$s');
lekarstvame replied on at Permalink Reply
Thank you very much!
It works!!!