Page 175 of 305 FirstFirst ... 75125165173174175176177185225275 ... LastLast
Results 1,741 to 1,750 of 3042
  1. #1741
    Join Date
    Mar 2008
    Posts
    8
    Plugin Contributions
    0

    Default Re: Apple Zen Support Thread

    I am using version Apple Zen Template v2.4 and Zen Cart 1.3.8

  2. #1742
    Join Date
    Sep 2006
    Location
    Oregon
    Posts
    217
    Plugin Contributions
    0

    Default Re: Apple Zen Support Thread

    Code:
    I would create those two pages in EZPAGES instead. Then if you follow the instructions, they will show up automatically.
    Thank you for your response Jettrue! I will see what I can do....

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

    Default Re: Apple Zen Support Thread

    Quote Originally Posted by aqalbany View Post
    I am using version Apple Zen Template v2.4 and Zen Cart 1.3.8
    Did you update from an earlier version of apple zen? Cause I thought that issue was fixed with my latest version, and it included some significant changes to the stylesheets. If you did not apply all of the stylesheet changes, that could be the issue. Could I see a link to your site?

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

    Default Re: Apple Zen Support Thread

    Quote Originally Posted by breezyr View Post
    I really like this template, thank you.

    I have a question, I would like to add another column to the drop down menu called Links. How would I do that? I am a real newb to zen cart so pardon my ignorance.

    Thanks
    Well, that would take some doing. :-)

    You could add the links manually in includes/templates/apple_zen/common/tpl_drop_menu.php, something like this:

    Code:
    <li class="submenu">Links
    <ul class="level2">
    <li><a href="sub_link_here.htm">Sub Link 1</a></li>
    <li><a href="sub_link2_here.htm">Sub Link 2</a></li>
    <li><a href="sub_link3_here.htm">Sub Link 3</a></li>
    <li><a href="sub_link4_here.htm">Sub Link 4</a></li>
    </ul>
    </li>

  5. #1745
    Join Date
    Mar 2008
    Posts
    8
    Plugin Contributions
    0

    Default Re: Apple Zen Support Thread

    The site is on our development server - http://74.52.92.130/~jwebmark/

    It is not an upgrade, but we did modify the CSS to accomodate the site colors.

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

    Default Re: Apple Zen Support Thread

    Quote Originally Posted by aqalbany View Post
    The site is on our development server - http://74.52.92.130/~jwebmark/

    It is not an upgrade, but we did modify the CSS to accomodate the site colors.
    Does the same thing happen at my test site, http://www.zencart137.jadetrue.com

  7. #1747
    Join Date
    Mar 2008
    Posts
    2
    Plugin Contributions
    0

    Default Re: Apple Zen Support Thread

    Quote Originally Posted by yuibi View Post
    Hello Jade,
    http://ZEN-CART_URL/index.php?main_page=specials
    (The problem occurs, when no product is marked as special.)

    http://ZEN-CART_URL/?p=1
    (the single post view page of the Wordpress mod.)

    When there is no special product, the side boxes which are supposed to in the right column move to the left (FF2 & IE6). Also when I view the single post page of the Wordpress mod, the side boxes move to the bottom-left corner under the blog comment section (IE6).

    My site is powered by Zen Cart version 1.3.0.2 and Apple Zen template version 2.3.

    Thanks for your attention
    Tsuyoshi
    Hi,

    I have figured out how to fix the problem occurred with WordPress on Zen Cart.
    What I did is add
    Code:
    .widecolumn { width: 95%; }
    to /WordPress path/wp-content/themes/default/style.css.

    That was so easy.

    I will disable the dropdown "special" link under "home" when no product is marked as special.

    Thank you,
    Tsuyoshi

  8. #1748
    Join Date
    Sep 2006
    Location
    Oregon
    Posts
    217
    Plugin Contributions
    0

    Default Re: Apple Zen Support Thread

    Wow... I am at my wits end with trying to figure out some things in apple zen with it's drop down menu! I really need some help!

    I have the drop down menu in the header and I would like to get rid of the following: (I have tried and tried to no avail)

    1. About us
    2. Discount Coupons
    3. Gift Certificates
    4. Specials
    5. New products

    I also cannot get the site map to go away!

    www.photographysisters.com

    Thank you

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

    Default Re: Apple Zen Support Thread

    Quote Originally Posted by debtag View Post
    Wow... I am at my wits end with trying to figure out some things in apple zen with it's drop down menu! I really need some help!

    I have the drop down menu in the header and I would like to get rid of the following: (I have tried and tried to no avail)

    1. About us
    2. Discount Coupons
    3. Gift Certificates
    4. Specials
    5. New products

    I also cannot get the site map to go away!

    www.photographysisters.com

    Thank you
    You can remove About us in includes/templates/apple_zen/common/tpl_drop_menu.php, just remove it:

    Code:
    <li><a href="<?php echo zen_href_link(FILENAME_ABOUT_US); ?>"><?php echo HEADER_TITLE_ABOUT_US; ?></a></li>
    2. If you want coupons off for the whole site, go to "Modules", "Order Total", and disable the discount coupon module. If you want it off for only the drop menu, remove it from tpl_drop_menu.php:
    Code:
    <?php if (MODULE_ORDER_TOTAL_COUPON_STATUS == 'true') { ?>
                    <li><a href="<?php echo zen_href_link(FILENAME_DISCOUNT_COUPON, '', 'NONSSL'); ?>"><?php echo HEADER_TITLE_DISCOUNT_COUPON; ?></a></li>
                    <?php } ?>
    3. If you want gift certificates off, do the same thing as #2. If you want it off only for the drop menu, remove this chunk:
    Code:
    <?php if (MODULE_ORDER_TOTAL_GV_STATUS == 'true') { ?>
                    <li><a href="<?php echo zen_href_link(FILENAME_GV_FAQ, '', 'NONSSL'); ?>"><?php echo HEADER_TITLE_GV_FAQ; ?></a></li>
                    <?php } ?>
    4. If you specials off for the whole site, go to the tpl_drop_menu.php again, and remove it:
    Code:
    <li><a href="<?php echo zen_href_link(FILENAME_SPECIALS); ?>"><?php echo HEADER_TITLE_SPECIALS; ?></a></li>
    5. Same as #4, but remove this chunk:
    Code:
    <li><a href="<?php echo zen_href_link(FILENAME_PRODUCTS_NEW); ?>"><?php echo HEADER_TITLE_NEW_PRODUCTS; ?></a></li>
    If you'd like the Site Map off for the entire site, Go to your admin, to "Configuration", "Define Page Status", and turn the site map off. If you want it off for the drop menu only, remove it from tpl_drop_menu.php:

    Code:
    <?php if (DEFINE_SITE_MAP_STATUS <= 1) { ?>
                    <li><a href="<?php echo zen_href_link(FILENAME_SITE_MAP); ?>"><?php echo HEADER_TITLE_SITE_MAP; ?></a></li>
                    <?php } ?>

  10. #1750
    Join Date
    Sep 2006
    Location
    Oregon
    Posts
    217
    Plugin Contributions
    0

    Default Re: Apple Zen Support Thread

    Thank you so much for helping me!!!!!!!!!!!!!!!!!!!!
    I am thrilled beyond belief!
    Everything worked except getting rid of SITE MAP! I totally removed:

    <?php if (DEFINE_SITE_MAP_STATUS <= 1) { ?>
    <li><a href="<?php echo zen_href_link(FILENAME_SITE_MAP); ?>"><?php echo HEADER_TITLE_SITE_MAP; ?></a></li>
    <?php } ?>

    from my tpl_drop_menu.php file and also in my admin, site map status is set to 3.....it's so annoying!

 

 

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