Results 1 to 6 of 6
  1. #1
    Join Date
    Aug 2006
    Posts
    27
    Plugin Contributions
    0

    Default Another Couple of Questions

    same site I posted before

    http://www.tartantrader.co.uk/catalog/default.php

    the header..

    Where it says My Account | Cart Contents | Checkout

    How would I go about doing this..

    Question #2 -
    Is there a way to make the shopping Cart Text Display all the time and not just when something is in it.. I am speaking specifically in the same area Log In and Home are displayed..

    TIA for any assistance

  2. #2
    Join Date
    Aug 2005
    Posts
    26,067
    Plugin Contributions
    9

    Default Re: Another Couple of Questions

    Where it says My Account | Cart Contents | Checkout

    How would I go about doing this..
    Doing What???
    Question #2 -
    Is there a way to make the shopping Cart Text Display all the time and not just when something is in it.. I am speaking specifically in the same area Log In and Home are displayed..
    This is in the admin > configuration > Layout Settings > Shopping Cart Box Status...
    Set this to "0".
    Zen-Venom Get Bitten
    Get Your Business Found

  3. #3
    Join Date
    Aug 2006
    Posts
    27
    Plugin Contributions
    0

    Default Re: Another Couple of Questions

    Quote Originally Posted by kobra
    Doing What???
    Adding this text to my header bar and on the left side, sorry for the empty question

    This is in the admin > configuration > Layout Settings > Shopping Cart Box Status...
    Set this to "0".
    No not the side box, I found that in searching for this ... But when you add something to your shopping cart, a link to your cart will appear in the header bar, my client wants that to show always.

  4. #4
    Join Date
    Aug 2005
    Posts
    26,067
    Plugin Contributions
    9

    Default Re: Another Couple of Questions

    In your admin > tools > developers tools > at the bottom left enter the text in the dropdown select all catalog files and then search.
    This will find the text you are searching for in the files and display the file, path and line # where it exists.

    From tpl_header.php
    Code:
    <?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>
    You would need to change this code to display all the time

    Adding this text to my header bar and on the left side, sorry for the empty question
    Still what text??
    Last edited by kobra; 15 Aug 2006 at 02:59 AM.
    Zen-Venom Get Bitten
    Get Your Business Found

  5. #5
    Join Date
    Aug 2006
    Posts
    27
    Plugin Contributions
    0

    Default Re: Another Couple of Questions

    Quote Originally Posted by kobra
    In your admin > tools > developers tools > at the bottom left enter the text in the dropdown select all catalog files and then search.
    This will find the text you are searching for in the files and display the file, path and line # where it exists.

    From tpl_header.php
    Code:
    <?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>
    You would need to change this code to display all the time

    Still what text??
    Thanks For The Help Kobra!!

    Got It!!

    Oh and the Shopping Cart , My account etc. I need it flushed to the right...

  6. #6
    Join Date
    Aug 2005
    Posts
    26,067
    Plugin Contributions
    9

    Default Re: Another Couple of Questions

    Try this in your stylesheet.css...find:
    Code:
    #navMain ul li, #navSupp ul li, #navCatTabs ul li {
    	display: inline;
    	white-space: nowrap;
    	}
    Add:
    Code:
    #navMain ul li, #navSupp ul li, #navCatTabs ul li {
    	display: inline;
            float: right;
    	white-space: nowrap;
    	}
    Zen-Venom Get Bitten
    Get Your Business Found

 

 

Similar Threads

  1. A couple questions
    By drbarnet in forum Templates, Stylesheets, Page Layout
    Replies: 8
    Last Post: 7 Aug 2006, 08:43 PM
  2. Help! Couple of questions
    By Berserker in forum Basic Configuration
    Replies: 6
    Last Post: 17 May 2006, 11:32 AM

Bookmarks

Posting Permissions

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