PDA

View Full Version : how to remove   on Title, kewywords or desc using $title


sherly
05-10-2007, 08:17 AM
I want to remove  

i user this for my title, keywords and description:

{$title} website directory

and it replace it like this

Art & Humanities  Web site Directory

and i want it to be like this

Art & Humanities Web site Directory

please help

thank you
sherly

Dave Baker
05-10-2007, 06:51 PM
Hello sherly,
***Open templates/yourTemplate/index.tpl and find code***

{if $category.description}
<div class="box">{$category.description|escape:"html"}</div>
{/if}

***Replace with***

{if $category.description}
<div class="box">{$category.description}</div>
{/if}

***Save changes***

acidburn2002
05-10-2007, 08:27 PM
thank you, it works

Dave Baker
05-10-2007, 11:42 PM
You're welcome acidburn2002!