Page 106 of 305 FirstFirst ... 65696104105106107108116156206 ... LastLast
Results 1,051 to 1,060 of 3042
  1. #1051
    Join Date
    Jan 2005
    Location
    USA, St. Louis
    Posts
    3,710
    Plugin Contributions
    9

    Default Re: Apple Zen Support Thread

    Quote Originally Posted by Linux View Post
    jettrue: I have seriously done some searching and could not find the answer of which php file to use. I want to add my "Wishlist Button" under Add to Cart button but I am not sure which php file. Can you please be so kind to tell me. Thanks so much.
    includes/templates/YOUR_TEMPLATE/templates/tpl_product_info_display.php

  2. #1052
    Join Date
    Apr 2006
    Location
    Southern California
    Posts
    27
    Plugin Contributions
    0

    help question Re: Apple Zen Template Support Thread

    Quote Originally Posted by jettrue View Post
    Don't install the alternate header module. You're not putting it in the right spot or something, and you have messed up the php comments somehow. Install the 2.0 template without any changes, then let me show you exactly what to do.
    Hi JetTrue,

    I've removed the Alternate Header 1.1a module per your instructions...

    Michael

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

    Default Re: Apple Zen Template Support Thread

    Quote Originally Posted by MasterGroove View Post
    Hi JetTrue,

    I've removed the Alternate Header 1.1a module per your instructions...

    Michael
    OK, great!

    Now, all you have to do, is take this whole chunk, starting with <!--bof-navigation display-->
    and ending with
    <!--eof-navigation display-->

    (make sure you look closely and choose the right <!--bof and eof, there's a lot of hidden tags in that file, it would be easy to see the wrong one)

    This is the chunk you want to move:

    Code:
            <!--bof-navigation display-->
            <div id="navMainWrapper" class="clearfix">
              <div id="navMain">
                <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>
                <div id="navMainSearch">
                  <?php require(DIR_WS_MODULES . 'sideboxes/search_header.php'); ?>
                </div>
              </div>
            </div> 
            <!--eof-navigation display-->
    Cut all of that, and paste it right after this:

    <!--eof-branding display-->

    Then, if your not using your ezpages menu in the header, go to your admin, and go to "Configuration", "EzPages Settings" and set the header bar to 0. That will get rid of the extra blue above your drop down menu.

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

    Default Re: Apple Zen Support Thread

    Quote Originally Posted by irenemic View Post
    I dunno if this issue has been addressed...

    I just installed the template and I am looking though my page. In the Information>about us it shows a 404 errorage not found and the site map.

    Did I just screw something up and how do I fix it? thanks!!!
    In the readme.txt, I state that the about_us page is not default to zen cart, and I give a link to the about us mod so that you can install it, and I also give instructions on removing that link from the drop down menu.

  5. #1055
    Join Date
    Apr 2004
    Posts
    191
    Plugin Contributions
    0

    Default Re: Apple Zen Support Thread

    1.I am struggling in how to replace a link with an image.

    <?php
    // (un): start wishlist link
    echo '<a href="' . zen_href_link(UN_FILENAME_WISHLIST, 'products_id=' . YOUR_PRODUCTS_ID . '&action=un_add_wishlist') . '">' . zen_image_button(BUTTON_IMAGE_WISHLIST, BUTTON_WISHLIST_ALT) . '</a>' : ''); ?></div>
    <?php
    // (un): end wishlist link
    ?>

    I keep getting an error and can't figure out the problem.

    2. I want it right under my Add to Cart and not sure where to place. Again, I have moved it around and keep getting errors.

    Thanking you in advance for your time and help.

  6. #1056
    Join Date
    Jul 2007
    Posts
    23
    Plugin Contributions
    0

    Default Re: Apple Zen Support Thread

    Hey quick question, would anyone know why on the main page http://shop.dgbremner.com

    The drop down menu is being cut off by that java slideshow in IE and not firefox?

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

    Default Re: Apple Zen Support Thread

    Quote Originally Posted by Linux View Post
    1.I am struggling in how to replace a link with an image.

    <?php
    // (un): start wishlist link
    echo '<a href="' . zen_href_link(UN_FILENAME_WISHLIST, 'products_id=' . YOUR_PRODUCTS_ID . '&action=un_add_wishlist') . '">' . zen_image_button(BUTTON_IMAGE_WISHLIST, BUTTON_WISHLIST_ALT) . '</a>' : ''); ?></div>
    <?php
    // (un): end wishlist link
    ?>

    I keep getting an error and can't figure out the problem.

    2. I want it right under my Add to Cart and not sure where to place. Again, I have moved it around and keep getting errors.

    Thanking you in advance for your time and help.
    What's the error, and could I see a link?

    Have you defined BUTTON_IMAGE_WISHLIST and BUTTON_WISHLIST_ALT? Where did you get "YOUR_PRODUCTS_ID" from? As far as I know, that is not even used at all in zen cart.

  8. #1058
    Join Date
    Oct 2005
    Posts
    96
    Plugin Contributions
    0

    Default Re: Apple Zen Support Thread

    I'm trying to add Featured Products to my drop down menu and I'm having a little trouble. I was able to get the link to show up in the menu, but I'm not sure what the link should be.

    This is what I added to tpl_drop_menu.php:
    Code:
    <li><a href="<?php echo zen_href_link(FILENAME_PRODUCTS_FEATURED); ?>"><?php echo HEADER_TITLE_FEATURED_PRODUCTS; ?></a></li>
    That link didn't work (although, with an added language define, the menu item shows up just fine), so I tried:
    Code:
    <li><a href="<?php echo zen_href_link(FILENAME_FEATURED_PRODUCTS_MODULE); ?>"><?php echo HEADER_TITLE_FEATURED_PRODUCTS; ?></a></li>
    which doesn't work either.

    Can anyone tell me how to code this link? Thanks a bunch.

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

    Default Re: Apple Zen Support Thread

    Quote Originally Posted by hrm View Post
    I'm trying to add Featured Products to my drop down menu and I'm having a little trouble. I was able to get the link to show up in the menu, but I'm not sure what the link should be.

    This is what I added to tpl_drop_menu.php:
    Code:
    <li><a href="<?php echo zen_href_link(FILENAME_PRODUCTS_FEATURED); ?>"><?php echo HEADER_TITLE_FEATURED_PRODUCTS; ?></a></li>
    That link didn't work (although, with an added language define, the menu item shows up just fine), so I tried:
    Code:
    <li><a href="<?php echo zen_href_link(FILENAME_FEATURED_PRODUCTS_MODULE); ?>"><?php echo HEADER_TITLE_FEATURED_PRODUCTS; ?></a></li>
    which doesn't work either.

    Can anyone tell me how to code this link? Thanks a bunch.
    You have the wrong define for the filename. You can find ALL the pages' defines in includes/filenames.php for the featured products you'll see this:

    define('FILENAME_FEATURED_PRODUCTS','featured_products');

  10. #1060
    Join Date
    Apr 2004
    Posts
    191
    Plugin Contributions
    0

    Default Re: Apple Zen Support Thread

    Quote Originally Posted by jettrue View Post
    What's the error, and could I see a link?

    Have you defined BUTTON_IMAGE_WISHLIST and BUTTON_WISHLIST_ALT? Where did you get "YOUR_PRODUCTS_ID" from? As far as I know, that is not even used at all in zen cart.
    jettrue: I was just trying to replace the link (Add To Wishlist) with an image and just gave up on it. No biggie I will just keep the link. I am not a programmer and was trying different things to see if it worked. Thanks so much for helping out.

 

 

Similar Threads

  1. Zen Lightbox addon [Support Thread]
    By Alex Clarke in forum All Other Contributions/Addons
    Replies: 3720
    Last Post: 6 Oct 2022, 11:18 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