I am kinda in a serious predicament here . Check this link
http://www.taqshop.com/xcart/home.php?cat=333
On the left sidebar you can see the sub catgeories of the parent category Technology.
I want to display the same subcategories in the subcategories individual pages also. like here
http://www.taqshop.com/xcart/home.php?cat=388
Current code of mine which i use to display the subcategory is
Code:
<ul>
{foreach from=$categories item=subcategory}
<li> <a href="home.php?cat={$subcategory.categoryid}">{$subcategory.category|escape}</a></li>
{/foreach}
</ul>
but with this i cant display the subcategories in the subcatgeory page. It will only display the subcategories of the current subcategory.
Any help will be appreciated