Drop Down Menu For Categories
I have read a previous thread about creating a drop down menu for the categories.tpl. I am able to view the category drop down, but the text is not visible and when clicked on redirects to the home page. Code Shown Below...
{* $Id: categories.tpl,v 1.19 2003/11/11 14:02:32 svowl 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"}
<form name="form_cat" method="get" action="home.php">
<select name="cat" onChange="document.form_cat.submit()">
<option value="0" selected>Search By Category</option>
{section name=cat_num loop=$categories}
<option value="home.php?cat={$c.categoryid}">{$categories[cat_num].category}</option>
{/section}
</select>
</form>
{else}
{section name=cat_num loop=$subcategories}
<font class=CategoriesList>{ $subcategories[cat_num].category_name|escape }</font>
{/section}
{/if}
{/if}
{/capture}
{include file="menu.tpl" dingbats="dingbats_categorie.gif" menu_title=$lng.lbl_categories menu_content=$smarty.capture.menu}
__________________
Conrad 'Rick' Alberto
San Diego, CA
www.TheFizix.com
X-Cart version 4.1.9
|