Site Title
Permalink 3 users found helpful
How can I edit a websites title, like the tags of a website?
<title>tilehere</title>
The title is set in your sitewide settings (last menu item on the left in the dashboard).
I see that the code used to build the <title> invokes PAGE_TITLE_FORMAT
The default seems to be the two colons ::
Is there a way to edit this please?
Thanks
ps. also, it would be great to have the ability to display the parent page where the site has parent child pages. Eg
Site Name | Parent section | Page Name
The default seems to be the two colons ::
Is there a way to edit this please?
Thanks
ps. also, it would be great to have the ability to display the parent page where the site has parent child pages. Eg
Site Name | Parent section | Page Name
Place the following in your config/site.php
define('PAGE_TITLE_FORMAT', '%1$s - %2$s');
the "-" will be the new separator, modify as you see fit.
Cheers.
define('PAGE_TITLE_FORMAT', '%1$s - %2$s');
the "-" will be the new separator, modify as you see fit.
Cheers.
Just wanted to point out that you could switch the page name and site name with the following.
define('PAGE_TITLE_FORMAT', '%2$s - %1$s');
A reason for doing this is discussed here.
http://www.concrete5.org/community/forums/customizing_c5/how_to_swi...
define('PAGE_TITLE_FORMAT', '%2$s - %1$s');
A reason for doing this is discussed here.
http://www.concrete5.org/community/forums/customizing_c5/how_to_swi...