I want to control the HTML TITLE of the blog article pages.
I have a Blog page template which is used for both the summary listing and also the detail listing.
When a detail blog post is viewed I need the TITLE to be
When a summary of blog articles is shown I need the TITLE to be simplyTITLE OF BLOG POST | company name etc...
In SEOTools2 I have the TITLE set asBlog | company name etc...
Code: Select all
{title} | Code: Select all
{if $entry->title != ""}
TEST:{$entry->title}
{SEOTools2|replace:'Blog |':'{$entry->title} |' showbase="false"}
{else}
{SEOTools2 showbase="false"}
{/if}Code: Select all
TEST:BlogTitle
<title>{$entry->title} | company name etc...</title>Plus another problem is that on the summary page it does exactly the same, whereas I want the summary page TITLE to be just Blog | as above.
Can someone point me in the right direction please?


