See, thatб╢s the thing, I canб╢t find where the category list that I have created is to insert the products inbetween the categories...I guess what I could do is hard code the categories to go to the link where they are found, but I wasnб╢t sure if that would screw up the scheme of things on other pages. I could modify the following in "Customer/Categories.tpl" taking out the bold area and hardcoding HTML to the part where my categories are found, right?
Quote:
{* $Id: categories.tpl,v 1.23 2004/06/24 09:53:29 max Exp $ *}
{capture name=menu}
{if $active_modules.Fancy_Categories ne ""}
{include file="`$fancycategories_config.modules_path`/fancy_categories.tpl"}
{else}
{if $config.General.root_categories eq "Y"}
{section name=cat_num loop=$categories}
<FONT class="CategoriesList">{$categories[cat_num].category}</FONT>
{/section}
{else} {section name=cat_num loop=$subcategories}
<FONT class="CategoriesList">{$subcategories[cat_num].category}</FONT>
{/section}
{/if}
{/if}
{/capture}
{ include file="menu.tpl" dingbats="dingbats_categorie.gif" menu_title=$lng.lbl_categories menu_content=$smarty.capture.menu }
|