Zen Cart Logo
Forums / Templates, Stylesheets, Page Layout / Disabled Lower Navigation Links

Disabled Lower Navigation Links

Locked

Views: 1,355

Results 1 to 2 of 2
This thread is locked. New replies are disabled.
29 Jan 2007, 5:11 PM
#1
cregy avatar

cregy

New Zenner

Join Date:
Oct 2006
Location:
Lostwithiel, Cornwall
Posts:
69
Plugin Contributions:
0

Disabled Lower Navigation Links

Hi

I know I have found the answer to this before but for the life of me I can't find it now!

Anyway, on this site:
http://www.nanadobbie.com/
you can see a grey bar at the bottom with the word home in it. Please can someone tell me how to get rid of it?

Thanks

Rich

30 Jan 2007, 5:13 AM
#2
bunyip avatar

bunyip

Totally Zenned

Join Date:
Sep 2004
Location:
Western Massachusetts
Posts:
2,361
Plugin Contributions:
1

Re: Disabled Lower Navigation Links

in your custom template copy of tpl_footer.php, edit this code:

<!--bof-navigation display -->
<div id="navSuppWrapper">
<div id="navSupp">
<ul>
<li><?php echo '<a href="' . HTTP_SERVER . DIR_WS_CATALOG . '">'; ?><?php echo HEADER_TITLE_CATALOG; ?></a></li>
<?php if (EZPAGES_STATUS_FOOTER == '1' or (EZPAGES_STATUS_FOOTER == '2' and (strstr(EXCLUDE_ADMIN_IP_FOR_MAINTENANCE, $_SERVER['REMOTE_ADDR'])))) { ?>
<li><?php require($template->get_template_dir('tpl_ezpages_bar_footer.php',DIR_WS_TEMPLATE, $current_page_base,'templates'). '/tpl_ezpages_bar_footer.php'); ?></li>
<?php } ?>
</ul>
</div>
</div>
<!--eof-navigation display -->