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.
that's really cool. thank you.
Can you proved the location to where this would be changed..
I am not finding it anywhere.
Thank you
mysite.com/???/???/???
I am not finding it anywhere.
Thank you
mysite.com/???/???/???
As Andrew said, you can find it in 'config/site.php'.
You need to login to your hosting account and edit the .php file.
You need to login to your hosting account and edit the .php file.
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...