View Single Post
  #1  
Old 05-22-2006, 10:29 AM
 
athenarchiver athenarchiver is offline
 

Advanced Member
  
Join Date: May 2006
Posts: 31
 

Default How to add additional menus on the left side cust navigation

Sorry if this is "too easy" but I'm learning and I thought I'd share:

To add additional menus on the left side of the customer navigation, edit the /customer/home.tpl and add a new line right under the last menu:

Code:
{include file="help.tpl" } {include file="customer/test_drive.tpl" } <----here [img]{$ImagesDir}/spacer.gif[/img]

Next create a new file called test_drive.tpl in the customer directory. Inside it put the following code:

Code:
{* $Id: categories.tpl,v 1.26 2005/11/17 06:55:37 max Exp $ *} {capture name=menu} <font class="CategoriesList"></font> { include file="menu.tpl" dingbats="dingbats_categorie.gif" menu_title="Test Drive!" menu_content='30-Day Free Trial' cellpadding=$fc_cellpadding}

For the menu_title, replace it with whatever you want the window to be called. For the content add as many links as you want using this format separated by
and make sure to stay inside the single quotation marks:

__________________
X-cart 4.1.0
X-Configurator 4.1.0
PHP 4.4.2
Reply With Quote