Zen Cart Logo
Forums / General Questions / Ezpages links in header navigation AUTOMATICALLY

Ezpages links in header navigation AUTOMATICALLY

Locked

Views: 1,604

Results 1 to 4 of 4
This thread is locked. New replies are disabled.
22 Sep 2006, 12:38 AM
#1
rowan_h avatar

rowan_h

New Zenner

Join Date:
Sep 2006
Posts:
20
Plugin Contributions:
0

Ezpages links in header navigation AUTOMATICALLY

I want to add Ezpages links in my normal header.
I can do this by manually inserting

<li><a href="<?php echo zen_ez_pages_link(ez-page-num);?>">Help</a></li>

But how do i do it so that it works automatically. Ie i set Header on in admin and they turn up in the normal navigation, NOT as another nav bar as they do at the moment.

What code do i have to change in my tpl_header.php file so that as i add new ezpages - they automatically turn up in the default nav bar??

Thanks for your help

Rowan

22 Sep 2006, 12:46 AM
#2
tinas avatar

tinas

Totally Zenned

Join Date:
Jan 2005
Location:
Lake Havasu, AZ
Posts:
1,090
Plugin Contributions:
0

Re: Ezpages links in header navigation AUTOMATICALLY

If you look at includes/templates/YOUR_TEMPLATE/common/tpl_header.php you will see this code :

<!--bof-header ezpage links--> <?php if (EZPAGES_STATUS_HEADER == '1' or (EZPAGES_STATUS_HEADER == '2' and (strstr(EXCLUDE_ADMIN_IP_FOR_MAINTENANCE, $_SERVER['REMOTE_ADDR'])))) { ?> <?php require($template->get_template_dir('tpl_ezpages_bar_header.php',DIR_WS_TEMPLATE, $current_page_base,'templates'). '/tpl_ezpages_bar_header.php'); ?> <?php } ?> <!--eof-header ezpage links-->

which can be moved where ever you want it to show up at in the header. Just move the entire block of code to make it show up wherever you want it to show.

Hope that helps.

22 Sep 2006, 4:49 AM
#3
rowan_h avatar

rowan_h

New Zenner

Join Date:
Sep 2006
Posts:
20
Plugin Contributions:
0

Re: Ezpages links in header navigation AUTOMATICALLY

Thanks, so simple!!!!
I was looking for a much harder option.

This worked a treat....
Thanks again

22 Sep 2006, 4:53 AM
#4
tinas avatar

tinas

Totally Zenned

Join Date:
Jan 2005
Location:
Lake Havasu, AZ
Posts:
1,090
Plugin Contributions:
0

Re: Ezpages links in header navigation AUTOMATICALLY

:D Glad it worked for you !