View Single Post
  #2  
Old 09-21-2004, 10:34 AM
  TelaFirma's Avatar 
TelaFirma TelaFirma is offline
 

X-Adept
  
Join Date: Nov 2002
Location: North Carolina USA
Posts: 930
 

Default Re: Creating new navigation

Quote:
Originally Posted by Tonto
1. Can I place these above Categories in their own block? If so, how?

Edit the /customer/home.tpl file are right above the line:
Code:
{ include file="customer/categories.tpl" }
insert:
Code:
{capture name=pages} {include file="pages_menu.tpl"} {/capture} { include file="menu.tpl" dingbats="dingbats_help.gif" menu_title="Links" menu_content=$smarty.capture.pages}
You can change the variable "Links" to what ever you would like for it to say.

Quote:
Originally Posted by Tonto
2. Is it possible to move them into the 'Categories' block? If so, how?

Edit your /customer/categories.tpl file, adding
Code:
{include file="pages_menu.tpl"}
above the last
so that now your file looks like this:

Code:
{* $Id: categories.tpl,v 1.19.2.1 2004/03/16 12:12:16 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"} {section name=cat_num loop=$categories} <font class=CategoriesList>{$categories[cat_num].category_name}</font> {/section} {else} {section name=cat_num loop=$subcategories} <font class=CategoriesList>{$subcategories[cat_num].category_name}</font> {/section} {/if} {/if} {include file="pages_menu.tpl"} {/capture} { include file="menu.tpl" dingbats="dingbats_categorie.gif" menu_title=$lng.lbl_categories menu_content=$smarty.capture.menu }
Reply With Quote