I'm trying to place some headers in left categories menu on
www.mr-roses.com/home.php
I edited the /skin1/customer/categories.tpl file like this:
Code:
{* $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}
{if $categories[cat_num].category eq "50 Roses"}
<div id="cat_head">Shop by Quantity</div>
{/if}
{if $categories[cat_num].category eq "Choose by color"}
<div id="cat_head">Shop by Color</div>
{/if}
{if $categories[cat_num].category eq "Roses by stem length"}
<div id="cat_head">Shop by Stem Length</div>
{/if}
{if $categories[cat_num].category eq "From `$`79 to `$`89"}
<div id="cat_head">Shop by Price</div>
{/if}
{if $categories[cat_num].category eq "Calendar Events"}
<div id="cat_head">Shop by Occasion</div>
{/if}
<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 }
It works fine as you can see, except that "Shop by Price" label.
Thanks.