Hello,
Can someone have an idea on how to change the colon as the page separator from the title of every page. for example “About : : Concrete CMS”. can anyone help me to change the colon into a “|” Character? or any tips here.
Thanks.
Hello,
Can someone have an idea on how to change the colon as the page separator from the title of every page. for example “About : : Concrete CMS”. can anyone help me to change the colon into a “|” Character? or any tips here.
Thanks.
If you create a file concrete.php in the application/config directory and add these lines that should take care of it
<?php
return [
'seo' => [
'title_format' => '%2$s | %1$s',
'title_segment_separator' => ' | ',
],
];
This is some older documentation, but still seems to apply to newer versions (per @hutman reply )
Thanks for this. the Title segment separator also works with the Meta Title on SEO.
Thank you.