rashriaz,
Try this:
Find these lines of code:
Code:
{ if $tmp and $first_subcat ne "Y" }
{assign var="tmp" value=0}
{assign var="first_subcat" value="Y"}
{/if}
and change the "tmp" value from 0 to 1, so it looks like this:
Code:
{ if $tmp and $first_subcat ne "Y" }
{assign var="tmp" value=1}
{assign var="first_subcat" value="Y"}
{/if}
Hope it works.
- MoonDog -