IN THE HTML PART ADD
{if $this->ishome}
ADD YOUR HOME PAGE TITLE HERE
{/if}
{if $this->iscategory}
{$Category->title}
{/if}
{if $this->isarticle}
{$Article->title}
{/if}
{if $this->ispage}
{$Page->title}
{/if}
{if $this->islatest}
Latest Articles Published At {$this->site_name}
{/if}
IN THE PHP PART ADD
if ($Article->summary){
$articlesummary = substr(strip_tags($Article->summary),0,110);
}
else{
$articlesummary = substr(strip_tags($Article->text),0,110);
}
if ($Article->keywords) {
$articlekeywords = $Article->keywords;
} else {
$articlekeywords = $Category->title;
}
if ($Category->description){
$categorydescription = substr(strip_tags($Category->description),0,200);
}
else{
$categorydescription = substr(strip_tags($Category->description),0,200);
}
-----------------------
REMEMBER:
For the Categories the code will display the description you add in the
Category Description Fields when you create or edit any category.
now go back to the articles to finish the steps