View Single Post
  #6  
Old 05-15-2008, 12:30 AM
  Yurij's Avatar 
Yurij Yurij is offline
Banned
 

X-Adept
  
Join Date: Jan 2008
Posts: 486
 

Default Re: Subcategory Icon

Open file "skin1/customer/main/subcategories.tpl", find next line:
PHP Code:
{if ($navigation_page eq "")||($navigation_page eq "1")}{$current_category.description}</>{/if} 

And to replace those lines with this code

PHP Code:
{if ($navigation_page eq "")||($navigation_page eq "1")}
<
img src="{if $current_category.icon_url}{$current_category.icon_url}{else}{$xcart_web_dir}/image.php?id={$cat}&amp;type=C{/if}" alt="" />
{
$current_category.description}</>{/if} 
Reply With Quote