To remove them from the Help section, open the help.tpl file and remove the line
Code:
{include file="pages_menu.tpl"}
To add a link to home, add this to the top of the /customer/categories.tpl
so that now the 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"}
Home
{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 }