View Single Post
  #37  
Old 10-31-2004, 10:53 AM
 
adamsteinhoff adamsteinhoff is offline
 

Member
  
Join Date: Sep 2004
Posts: 19
 

Default

Quote:
Originally Posted by nhraracer241
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

Bobby,

Thanks for the code, but it still doesn't work on my site. Any other suggestions?

Adam
__________________
X-Cart 4.0.3
PHP 4.3.8
OS Linux
Perl 5.006001
XML 1.95.6
Reply With Quote