Page 269 of 305 FirstFirst ... 169219259267268269270271279 ... LastLast
Results 2,681 to 2,690 of 3042
  1. #2681
    Join Date
    Jan 2005
    Location
    USA, St. Louis
    Posts
    3,710
    Plugin Contributions
    9

    Default Re: Apple Zen Support Thread

    Quote Originally Posted by ommannette View Post
    Ok , I figured out the header issue (I had to remove the "/*" from line 65, where the instructions for the narrow header is)..
    But I still need help with the products page.
    If anyone can help me , I would appreciate it.
    Your site has a lot of errors.

    For one, you seem to have this twice:
    <div class="centerColumn" id="indexDefault">


    Go to:
    http://validator.w3.org/check?verbos...efoodie.com%2F

    And try to figure out some of your errors. If you have too much trouble figuring out the errors, I'd suggest you start fresh and re-install the template.

  2. #2682
    Join Date
    Jan 2005
    Location
    USA, St. Louis
    Posts
    3,710
    Plugin Contributions
    9

    Default Re: Apple Zen Support Thread

    Quote Originally Posted by GFSTrading View Post
    Hi, I prefer Apple Zen and have been using this template since Dec 2007, so the version should be the oldest one.

    I am sorry if this has been answered before, trying to search but couldn't find...
    1) How do I remove the 2 blue bars extending out from the main menu?

    2) How do I make the menu bar equally spaced for the 6 headers. i.e "Home", "Start Shoppping. "Information"...

    3) How do I add a background pic to the page.

    Pls pardon me as I am really not technically skill in this area and have been struggling for some time.
    MTIA.

    Do I understand correctly, that you are using an old version of the template? Please install the newest version first.

  3. #2683
    Join Date
    Jun 2009
    Posts
    2
    Plugin Contributions
    0

    Default Re: Apple Zen Support Thread

    Quote Originally Posted by jettrue View Post
    Do I understand correctly, that you are using an old version of the template? Please install the newest version first.
    Hi, I am sorry but to be frank, I will not know exactly how to do it...
    This current one was passed down to me by my friend who can't help me now...

    Actually the whole site is working well but just want to beautify it...
    If you can help me, I will really appreciate.

  4. #2684
    Join Date
    Jun 2009
    Posts
    28
    Plugin Contributions
    0

    help question Re: Apple Zen Support Thread

    Quote Originally Posted by jettrue View Post
    You can remove the HOME LOGIN from the header in includes/templates/apple_zen/common/tpl_header.php.

    Can you give a bit more detail on how to actually remove this? I am not to sure which part of the code controls this, do I just comment something out or delete something entirely? I would really like to know as it seems duplicated with lower menus the way I have my site configured so far; but I don't want to mess up your great template by doing this without your guidance.

    Thanks Charals

  5. #2685
    Join Date
    Apr 2009
    Posts
    9
    Plugin Contributions
    0

    Default Re: Apple Zen Support Thread

    Quote Originally Posted by jettrue View Post
    Your site has a lot of errors.

    For one, you seem to have this twice:
    <div class="centerColumn" id="indexDefault">


    Go to:
    http://validator.w3.org/check?verbos...efoodie.com%2F

    And try to figure out some of your errors. If you have too much trouble figuring out the errors, I'd suggest you start fresh and re-install the template.
    I would just like to remove the "read reviews", "ask a question" "tell a friend" etc. from the bottom of the products page.., can you help me with that?

  6. #2686
    Join Date
    Apr 2009
    Posts
    9
    Plugin Contributions
    0

    Default Re: Apple Zen Support Thread

    I saw the errors and if I were to code my own page, I could probably find the errors and fix them, however, I don't know where to find these pages on zencart. I don't suppose you could tell me that could you? I see the errors, but where is the actual page to fix them?

    Thank you for your help with this..,

  7. #2687
    Join Date
    Jan 2005
    Location
    USA, St. Louis
    Posts
    3,710
    Plugin Contributions
    9

    Default Re: Apple Zen Support Thread

    Quote Originally Posted by ommannette View Post
    I saw the errors and if I were to code my own page, I could probably find the errors and fix them, however, I don't know where to find these pages on zencart. I don't suppose you could tell me that could you? I see the errors, but where is the actual page to fix them?

    Thank you for your help with this..,
    The only way for me to tell you how to fix the errors, is for me to do it myself. So then my advice is for you to start fresh with the template.

    As far as the things you want to remove from the product page, you do all that in your admin, under "Catalog", "Product Types", "Layout Settings"

  8. #2688
    Join Date
    Jan 2005
    Location
    USA, St. Louis
    Posts
    3,710
    Plugin Contributions
    9

    Default Re: Apple Zen Support Thread

    Quote Originally Posted by charals View Post
    Can you give a bit more detail on how to actually remove this? I am not to sure which part of the code controls this, do I just comment something out or delete something entirely? I would really like to know as it seems duplicated with lower menus the way I have my site configured so far; but I don't want to mess up your great template by doing this without your guidance.

    Thanks Charals
    Try removing this portion:
    Code:
    <div id="navMainLinks">
                  <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 }?>
                  </ul>
                </div>
    If you keep a copy before you make changes, you don't need to worry about trying to do things yourself.

  9. #2689
    Join Date
    Jan 2005
    Location
    USA, St. Louis
    Posts
    3,710
    Plugin Contributions
    9

    Default Re: Apple Zen Support Thread

    Quote Originally Posted by GFSTrading View Post
    Hi, I am sorry but to be frank, I will not know exactly how to do it...
    This current one was passed down to me by my friend who can't help me now...

    Actually the whole site is working well but just want to beautify it...
    If you can help me, I will really appreciate.
    Email me at [email protected]

  10. #2690
    Join Date
    Apr 2009
    Posts
    9
    Plugin Contributions
    0

    Default Re: Apple Zen Support Thread

    Quote Originally Posted by jettrue View Post
    The only way for me to tell you how to fix the errors, is for me to do it myself. So then my advice is for you to start fresh with the template.

    As far as the things you want to remove from the product page, you do all that in your admin, under "Catalog", "Product Types", "Layout Settings"
    I can fix the errors if I knew where the html or php files were that they are in. I just d/l the apple zen file. The "read review" tell a friend, etc. appeared when I d/l the apple zen, this is why I would like to know where to go to get it off.

    Thanks for your help with this..,

 

 

Similar Threads

  1. Zen Lightbox addon [Support Thread]
    By Alex Clarke in forum All Other Contributions/Addons
    Replies: 3725
    Last Post: 20 Feb 2025, 05:46 PM
  2. Cherry Zen Template Support Thread
    By jettrue in forum Addon Templates
    Replies: 3250
    Last Post: 13 Nov 2017, 08:02 PM
  3. v151 Zen Magnific Support Thread
    By mutinyzoo in forum All Other Contributions/Addons
    Replies: 79
    Last Post: 14 Sep 2015, 04:39 AM
  4. Simple Zen Template - Support Thread
    By jettrue in forum Addon Templates
    Replies: 461
    Last Post: 27 Apr 2013, 01:33 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
  •  
disjunctive-egg
Zen-Cart, Internet Selling Services, Klamath Falls, OR