Results 1 to 2 of 2
  1. #1
    Join Date
    Oct 2010
    Posts
    19
    Plugin Contributions
    0

    Default I would like to add link to an EZ page in top menu

    I"m trying to add an EZ page link to the top menu of this site:
    shop.judithstilesdesigns dot com

    The same menu that has log in, check out etc. I've tried all the different settings in the EZ pages and it's not working. Please advise.

    Thank you!

  2. #2
    Join Date
    Aug 2005
    Location
    Arizona
    Posts
    27,755
    Plugin Contributions
    9

    Default Re: I would like to add link to an EZ page in top menu

    Grab a copy for your template of /includes/templates/template_default/common/tpl_header.php

    Open in a plain text code editor and find this and add your ezpage link similar to what I have entered in red


    Code:
    <div id="navMain">
        <ul class="back">
        <li><?php echo '<a href="' . HTTP_SERVER . DIR_WS_CATALOG . '">'; ?><?php echo HEADER_TITLE_CATALOG; ?></a></li>
    <?php if ($_SESSION['customer_id']) { ?>
        <li><a href="<?php echo zen_href_link(FILENAME_LOGOFF, '', 'SSL'); ?>"><?php echo HEADER_TITLE_LOGOFF; ?></a></li>
        <li><a href="<?php echo zen_href_link(FILENAME_ACCOUNT, '', 'SSL'); ?>"><?php echo HEADER_TITLE_MY_ACCOUNT; ?></a></li>
    <?php
          } else {
            if (STORE_STATUS == '0') {
    ?>
        <li><a href="<?php echo zen_href_link(FILENAME_LOGIN, '', 'SSL'); ?>"><?php echo HEADER_TITLE_LOGIN; ?></a></li>
    <?php } } ?>
    
    <?php if ($_SESSION['cart']->count_contents() != 0) { ?>
        <li><a href="<?php echo zen_href_link(FILENAME_SHOPPING_CART, '', 'NONSSL'); ?>"><?php echo HEADER_TITLE_CART_CONTENTS; ?></a></li>
        <li><a href="<?php echo zen_href_link(FILENAME_CHECKOUT_SHIPPING, '', 'SSL'); ?>"><?php echo HEADER_TITLE_CHECKOUT; ?></a></li>
    <?php }?>
    <li><a href="/index.php?main_page=page&id=4">my_text</a></li>
    </ul>
    </div>
    Upload to includes/templates/freetemplate1/common/

    Create if it does not exist
    Zen-Venom Get Bitten

 

 

Similar Threads

  1. What file do I edit if I would like to add a css link?
    By petergy in forum Templates, Stylesheets, Page Layout
    Replies: 2
    Last Post: 17 Apr 2013, 05:39 AM
  2. Add link on top menu bar
    By Moncia in forum Templates, Stylesheets, Page Layout
    Replies: 10
    Last Post: 17 Jun 2011, 09:25 AM
  3. I would like to add an upload a document on the description page.
    By tanyaleann in forum Setting Up Categories, Products, Attributes
    Replies: 3
    Last Post: 16 Oct 2008, 02:51 PM
  4. How to add text link for search on top menu bar?
    By hara in forum Customization from the Admin
    Replies: 1
    Last Post: 3 Oct 2008, 01:28 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg