View Single Post
  #34  
Old 10-24-2004, 09:48 PM
 
nhraracer241 nhraracer241 is offline
 

Member
  
Join Date: Jul 2004
Posts: 25
 

Default

May,
I think the fix for your problem is in this bit of code from subcategories.tpl

Quote:
<td align=left><a class="alt" href="home.php?cat={ $subcategories[cat_num].categoryid }">
{$subcategories[cat_num].category|escape}</a>

{$subcategories[cat_num].description|escape}
{if $config.Appearance.count_products eq "Y"}


Delete |escape from $subcategories[cat_num].description so you have this:
Quote:
<td align=left><a class="alt" href="home.php?cat={ $subcategories[cat_num].categoryid }">
{$subcategories[cat_num].category|escape}</a>

{$subcategories[cat_num].description}
{if $config.Appearance.count_products eq "Y"}


and that should fix it.

Bobby
__________________
nhraracer241
1 X-Cart Version 4.1.10
2 X-Cart version 3.5.10
PHP 4.3.5
MySQL server 4.0.20-standard
Operation system Linux
Apache Web Server
Reply With Quote