Page 1 of 2 12 LastLast
Results 1 to 10 of 13
  1. #1
    Join Date
    Jan 2007
    Posts
    8
    Plugin Contributions
    0

    Default help with red passion template

    how do I add links next to my navigation where it says Home; Login
    I would like to add other links like my blog and gallery. is this possible?
    my links is http://www.digi-moments.net/Shoppe/
    thanks in advance
    -Tanya

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

    Default Re: help with red passion template

    Find your copy of tpl_header.php then find <!--bof-navigation display--> and <!--eof-navigation display-->

    Look at the listings between these and insert additional li's where you want with href's to your pages

  3. #3
    Join Date
    Jan 2007
    Posts
    8
    Plugin Contributions
    0

    Default Re: help with red passion template

    thanks soo much

  4. #4
    Join Date
    Mar 2006
    Location
    Fresno, California
    Posts
    620
    Plugin Contributions
    0

    Default Re: help with red passion template

    I want to do this too, but it will not show up.

    Here is my code in tpl_header.php:

    PHP Code:
    <!--bof-navigation display-->
    <div id="navMainWrapper">
    <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>
    <li><a href="http://www.chappellmccullar.com/notes/index.php">Michael's Blog</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>
    <li><a href="mylink.html">My link</a></li>
    <?php }?>
    </ul>
    </div>
    Where did I go wrong?

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

    Default Re: help with red passion template

    bobdog,

    How about a look at the site where this is?

  6. #6
    Join Date
    Mar 2006
    Location
    Fresno, California
    Posts
    620
    Plugin Contributions
    0

    Default Re: help with red passion template


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

    Default Re: help with red passion template

    bobdog,

    If that is your tpl_header.php file it is not in the correct place and not being used.

    What is the path to this file?

    It should be in includes/templates/custom_template/common

  8. #8
    Join Date
    Mar 2006
    Location
    Fresno, California
    Posts
    620
    Plugin Contributions
    0

    Default Re: help with red passion template

    Kobra,

    Thanks for the reply. True, the <li> was removed yesterday as I awaited a reply.

    However, I solved the problem. For others having this problem, there seems to be a specific place to add between the

    <!--bof-navigation display-->

    and

    <!--eof-navigation display-->

    This worked for me:

    PHP Code:
    <!--bof-navigation display-->
    <div id="navMainWrapper">
    <div id="navMain">
        <ul class="back">
        <li><?php echo '<a href="' HTTP_SERVER DIR_WS_CATALOG '">'?><?php echo HEADER_TITLE_CATALOG?></a></li>
    <li><a href="http://www.MY_LINK.com/notes/index.php">MY LINK</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 }?>
    </ul>
    </div>
    <div id="navMainSearch"><?php require(DIR_WS_MODULES 'sideboxes/search_header.php'); ?></div>
    <br class="clearBoth" />
    </div>
    <!--eof-navigation display-->

  9. #9
    Join Date
    Jan 2007
    Posts
    8
    Plugin Contributions
    0

    Default Re: help with red passion template

    is there anyway to change the home link to say shoppe? instead of home?

  10. #10
    Join Date
    Mar 2006
    Location
    Fresno, California
    Posts
    620
    Plugin Contributions
    0

    Default Re: help with red passion template

    Yes. In includes/languages/english/header.php check around line 16,

    Change this:

    PHP Code:
      define('HEADER_TITLE_CATALOG''Home'); 
    To this:

    PHP Code:
      define('HEADER_TITLE_CATALOG''Shoppe'); 
    Be sure to save it to languages/english/MY_TEMPLATE/header.php

 

 
Page 1 of 2 12 LastLast

Similar Threads

  1. Modifying Red Passion template
    By Jshessel in forum Templates, Stylesheets, Page Layout
    Replies: 3
    Last Post: 17 Jun 2010, 08:57 PM
  2. Multiple H1 Tags -red passion template
    By linnx in forum Addon Templates
    Replies: 1
    Last Post: 19 Jan 2010, 06:27 PM
  3. Side Menu not showing up with "Red Passion" Template
    By tinman414 in forum Addon Templates
    Replies: 5
    Last Post: 3 Oct 2009, 12:11 AM
  4. Red passion template
    By malci in forum Addon Templates
    Replies: 0
    Last Post: 22 Aug 2008, 10:57 AM
  5. Red Passion Template Error
    By NicholeAnn in forum Addon Templates
    Replies: 7
    Last Post: 30 May 2007, 02:56 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