Zen Cart Logo
Forums / Installing on a Windows Server / Add Site Navigation Links??

Add Site Navigation Links??

Locked

Views: 2,483

Results 1 to 7 of 7
This thread is locked. New replies are disabled.
14 Jun 2006, 3:22 AM
#1
alma avatar

alma

New Zenner

Join Date:
Jun 2006
Posts:
45
Plugin Contributions:
0

Add Site Navigation Links??

Is it possible to add some site navigation links above the header? If so, what file do I edit?
Thanks
Alma

14 Jun 2006, 4:12 AM
#2
merlinpa1969 avatar

merlinpa1969

Totally Zenned

Join Date:
Mar 2004
Posts:
13,031
Plugin Contributions:
4

Re: Add Site Navigation Links??

includes/templates/your_template/common/tpl_header.php

14 Jun 2006, 6:06 PM
#3
alma avatar

alma

New Zenner

Join Date:
Jun 2006
Posts:
45
Plugin Contributions:
0

Re: Add Site Navigation Links??

I don't wish to enter link into the exisiting menu bar, but add above it. Can you tell where to enter my html code?

if ($messageStack->size('header') > 0) {
echo $messageStack->output('header');
}
?>
<table class="centershop" border="0" cellspacing="0" cellpadding="0">

<?php if (!isset($flag_disable_header) || $flag_disable_header == false) { ?>
  <tr><td>
    <table width="100%" border="0" cellspacing="0" cellpadding="0" class="headerNavigation">
      <tr>
        <td align="left" valign="top" width="35%" class="headerNavigation">
          <a href="<?php echo zen_href_link(FILENAME_DEFAULT, '', 'NONSSL'); ?>"><?php echo HEADER_TITLE_CATALOG; ?></a> | 
<?php if (isset($_SESSION['customer_id'])) { ?>
          <a href="<?php echo zen_href_link(FILENAME_LOGOFF, '', 'SSL'); ?>"><?php echo HEADER_TITLE_LOGOFF; ?></a> | 
          <a href="<?php echo zen_href_link(FILENAME_ACCOUNT, '', 'SSL'); ?>"><?php echo HEADER_TITLE_MY_ACCOUNT
14 Jun 2006, 6:20 PM
#4
merlinpa1969 avatar

merlinpa1969

Totally Zenned

Join Date:
Mar 2004
Posts:
13,031
Plugin Contributions:
4

Re: Add Site Navigation Links??

between

<tr><td>

and

<table width="100%" border="0" cellspacing="0" cellpadding="0" class="headerNavigation">

create your new nav bar table.
like in the link in my signature

15 Jun 2006, 2:51 AM
#5
alma avatar

alma

New Zenner

Join Date:
Jun 2006
Posts:
45
Plugin Contributions:
0

Re: Add Site Navigation Links??

Worked perfect! Thank you!

15 Jun 2006, 3:00 AM
#6
merlinpa1969 avatar

merlinpa1969

Totally Zenned

Join Date:
Mar 2004
Posts:
13,031
Plugin Contributions:
4

Re: Add Site Navigation Links??

your welcome,
glad to be of service

22 Jun 2007, 2:45 AM
#7
mipavluk avatar

mipavluk

Zen Follower

Join Date:
Jun 2007
Location:
Posadas, Misiones, Argentina
Posts:
221
Plugin Contributions:
0

Re: Add Site Navigation Links??

Thank you Merlin!
Was great for me too!