Great product, finally understanding the templates, though i would ask this question right away and see if you can help me save some time.
Check out
www.pooltradeshop.com/home.php
yes i know, a mess still

Instead of direct linking to the categories on the front page, i've set them as static images and want the subcategories to show up in the list underneath. That way i dont have to build a direct link for each new brand, etc.
Now i've just barely tapped into this, but found the code that brings up the categories, no problem:
Code:
{assign var="tmp" value="0"}
{section name=cat_num loop=$subcategories}
{if $subcategories[cat_num].category}{assign var="tmp" value="1"}{/if}
{/section}
{if $subcategories}
<TABLE border="0" cellspacing="5" width="100%">
{foreach from=$subcategories item=subcat}
<TR>
{if $tmp and $first_subcat ne "Y"}
{assign var="first_subcat" value="Y"}
{/if}
<TD align="left" width="95%">
<FONT class="ItemsList">{ $subcat.category|escape }</FONT>
</TD>
</TR>
{/foreach}
</TABLE>
{/if}
So what line(s) do i need to change so it brings up lets say, the subcategories to cat=3? If I figure it out first, I'll be sure to post the answer. Thank you for your time!
yoshitoshi