View Single Post
  #4  
Old 08-12-2009, 12:14 PM
  cflsystems's Avatar 
cflsystems cflsystems is offline
 

Veteran
  
Join Date: Apr 2007
Posts: 14,201
 

Default Re: Product matrix vs list

This is what's there by default
Code:
{if $config.Appearance.subcategories_per_row eq 'Y'} {if $current_category.description ne ""} <div class="subcategory-descr">{$current_category.description}</div> {/if} {if $subcategories} {include file="customer/main/subcategories_t.tpl"} {/if} {else} ............. {if $subcategories} {include file="customer/main/subcategories_list.tpl"} {/if} .............
so you can do something like this
Code:
{if $config.Appearance.subcategories_per_row eq 'Y'} {if $current_category.description ne ""} <div class="subcategory-descr">{$current_category.description}</div> {/if} {if $subcategories and $current_category.categoryid eq "433"} {include file="customer/main/subcategories_t.tpl"} {/if} {else} ............. {if $subcategories} {include file="customer/main/subcategories_list.tpl"} {/if} .............
or the same for subcategories_list.tpl, depending on how you need it
__________________
Steve Stoyanov
CFLSystems.com
Web Development
Reply With Quote