Page 50 of 326 FirstFirst ... 40484950515260100150 ... LastLast
Results 491 to 500 of 3251
  1. #491
    Join Date
    Jul 2007
    Posts
    2,169
    Plugin Contributions
    16

    Default Re: Cherry Zen Template Support Thread

    The sidebox is controlled by the image sidebox.gif, in the cherry_zen/images folder. Change the color in the image, then re-upload.
    Thank you jettrue, that worked out perfect.
    Is your site Upgraded to the current version 1.5.4 Yet?
    zencart-upgrades-website-installation

  2. #492
    Join Date
    Oct 2007
    Posts
    43
    Plugin Contributions
    0

    Default Re: Cherry Zen Template Support Thread

    Thanks Jade,

    Strangely, I was able to get it to work the proper way (item shows with direct link, but not in the sideboxes, searches, or in new items). But the workaround was strange. I had to first make the category hidden using HideCategories. Then turn the category off completely (giving a red icon). Then go into the category and manually turn on the 2 products in there (green icon). After that, and reloading the page, the category stopped showing up in the CherryZen sidebox and the items don't come up in searches or new products, but they still work for a direct link.

    BTW, thanks again for your great contribution. Your template has greatly helped my site look very nice. Here it is:


    http://candid-hd.com/catalog/index.php?main_page=

    Best,
    Patrick

  3. #493
    Join Date
    Jun 2004
    Posts
    184
    Plugin Contributions
    0

    Default Re: Cherry Zen Template Support Thread

    Hi!

    I just installed Cherry Zen and love it and have tried to search to see if anyone has this problem but....

    I think I've installed IH correctly as well as Cherry Zen

    So in effect rather than `hovering' it displays the image in the top left hand corner of the page!

    The demo page is at http://thrivingstores.com/store_zen/...=index&cPath=1

    Any ideas? Probably something stupid I've done!

    It should load fine, but whenever your mouse goes near a thumbnail.....

    Thanks
    Ernie

    Thanks
    Ernie

  4. #494
    Join Date
    Oct 2007
    Posts
    11
    Plugin Contributions
    0

    Default Re: Checkout w/Empty Cart

    Hi Jade,
    Thanks for your reply.

    Quote Originally Posted by jettrue View Post
    Is that page breaking when you click "checkout"? If so, you can just upload includes/templates/cherry_zen/templates/tpl_time_out_default.php from the newest version.
    No, it's not breaking. I just I think if checkout is selected when the cart is empty, then it is preferable to show an empty trolley rather than suggesting a timeout has occured and requesting the customer signin (when they may not have an account yet).
    Quote Originally Posted by jettrue View Post
    To make the checkout the same as shopping cart, simply open up includes/templates/cherry_zen/common/tpl_header.php and change this:


    Code:
    <li><a href="<?php echo zen_href_link(FILENAME_SHOPPING_CART, '', 'NONSSL'); ?>"><span><?php echo HEADER_TITLE_CART_CONTENTS; ?></span></a></li>
                <li><a href="<?php echo zen_href_link(FILENAME_CHECKOUT_SHIPPING, '', 'SSL'); ?>"><span class="last"><?php echo HEADER_TITLE_CHECKOUT; ?></span></a></li>

    to this:


    Code:
    <li><a href="<?php echo zen_href_link(FILENAME_SHOPPING_CART, '', 'NONSSL'); ?>"><span><?php echo HEADER_TITLE_CART_CONTENTS; ?></span></a></li>
               <li><a href="<?php echo zen_href_link(FILENAME_SHOPPING_CART, '', 'NONSSL'); ?>"><span class="last"><?php echo HEADER_TITLE_CHECKOUT; ?></span></a></li>
    I think that'll do it!
    I gave that a try but it then it redirects to Shopping Cart in all instances, not just when the Cart is empty.

    I'll keep looking and will post if I find anything.
    Thanks again.

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

    Default Re: Cherry Zen Template Support Thread

    Quote Originally Posted by esugrue View Post
    Hi!

    I just installed Cherry Zen and love it and have tried to search to see if anyone has this problem but....

    I think I've installed IH correctly as well as Cherry Zen

    So in effect rather than `hovering' it displays the image in the top left hand corner of the page!

    The demo page is at http://thrivingstores.com/store_zen/...=index&cPath=1

    Any ideas? Probably something stupid I've done!

    It should load fine, but whenever your mouse goes near a thumbnail.....

    Thanks
    Ernie

    Thanks
    Ernie
    Upload all the files for IH2, specifically the jscript/ and css/ files for IH2.

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

    Default Re: Checkout w/Empty Cart

    Quote Originally Posted by agcolbert View Post
    Hi Jade,
    Thanks for your reply.


    No, it's not breaking. I just I think if checkout is selected when the cart is empty, then it is preferable to show an empty trolley rather than suggesting a timeout has occured and requesting the customer signin (when they may not have an account yet).


    I gave that a try but it then it redirects to Shopping Cart in all instances, not just when the Cart is empty.

    I'll keep looking and will post if I find anything.
    Thanks again.
    The the code below. I may have messed up some syntax, so let me know if it doesn't work.

    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>
    
    <?php } else if ($_SESSION['cart']->count_contents() == 0) { ?>
    
    <li><a href="<?php echo zen_href_link(FILENAME_SHOPPING_CART, '', 'NONSSL'); ?>"><span><?php echo HEADER_TITLE_CART_CONTENTS; ?></span></a></li>
    <li><a href="<?php echo zen_href_link(FILENAME_SHOPPING_CART, '', 'NONSSL'); ?>"><span class="last"><?php echo HEADER_TITLE_CHECKOUT; ?></span></a></li>
    
    
    <?php }?>

  7. #497
    Join Date
    Oct 2007
    Posts
    11
    Plugin Contributions
    0

    Default Re: Cherry Zen Template Support Thread

    Thanks for the help, this is just what I wanted. I had to make a slight change to the code (a couple of <span>'s added by guesswork) so could you please check my changes for mistakes.


    Code:
    <?php if ($_SESSION['cart']->count_contents() != 0) { ?>
    
    <li><a href="<?php echo zen_href_link(FILENAME_SHOPPING_CART, '', 'NONSSL'); ?>"><span><?php echo HEADER_TITLE_CART_CONTENTS; ?></span></a></li>
    <li><a href="<?php echo zen_href_link(FILENAME_CHECKOUT_SHIPPING, '', 'SSL'); ?>"><span class="last"><?php echo HEADER_TITLE_CHECKOUT; ?></span></a></li>
    
    <?php } else if ($_SESSION['cart']->count_contents() == 0) { ?>
    
    <li><a href="<?php echo zen_href_link(FILENAME_SHOPPING_CART, '', 'NONSSL'); ?>"><span><?php echo HEADER_TITLE_CART_CONTENTS; ?></span></a></li>
    <li><a href="<?php echo zen_href_link(FILENAME_SHOPPING_CART, '', 'NONSSL'); ?>"><span class="last"><?php echo HEADER_TITLE_CHECKOUT; ?></span></a></li>
    
    
    <?php }?>

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

    Default Re: Cherry Zen Template Support Thread

    Quote Originally Posted by agcolbert View Post
    Thanks for the help, this is just what I wanted. I had to make a slight change to the code (a couple of <span>'s added by guesswork) so could you please check my changes for mistakes.


    Code:
    <?php if ($_SESSION['cart']->count_contents() != 0) { ?>
    
    <li><a href="<?php echo zen_href_link(FILENAME_SHOPPING_CART, '', 'NONSSL'); ?>"><span><?php echo HEADER_TITLE_CART_CONTENTS; ?></span></a></li>
    <li><a href="<?php echo zen_href_link(FILENAME_CHECKOUT_SHIPPING, '', 'SSL'); ?>"><span class="last"><?php echo HEADER_TITLE_CHECKOUT; ?></span></a></li>
    
    <?php } else if ($_SESSION['cart']->count_contents() == 0) { ?>
    
    <li><a href="<?php echo zen_href_link(FILENAME_SHOPPING_CART, '', 'NONSSL'); ?>"><span><?php echo HEADER_TITLE_CART_CONTENTS; ?></span></a></li>
    <li><a href="<?php echo zen_href_link(FILENAME_SHOPPING_CART, '', 'NONSSL'); ?>"><span class="last"><?php echo HEADER_TITLE_CHECKOUT; ?></span></a></li>
    
    
    <?php }?>
    Looks good!

  9. #499
    Join Date
    Dec 2004
    Posts
    37
    Plugin Contributions
    0

    help question Re: Cherry Zen Template Support Thread

    I am having some peculiar issues with my sidebox banners. I have two installed and each one is programmed differently and yet they both show the same details at the same time then dynamically they seem to change to the other detail.

    sometimes they display different detail as I want them to be but everything seems to change dynamically.

    How do I control the sidebox banners? Is there something in Cherry Zen that needs an adjustment or is this a ZC issue?

    I hope my question is clear.

    Peppyone

  10. #500
    Join Date
    Dec 2004
    Posts
    37
    Plugin Contributions
    0

    Default Re: Cherry Zen Template Support Thread

    I apologize. This is not a Cherry Zen Issue. found my answers in the banners tutorial.

    Carry on.

    P

    Quote Originally Posted by peppyone View Post
    I am having some peculiar issues with my sidebox banners. I have two installed and each one is programmed differently and yet they both show the same details at the same time then dynamically they seem to change to the other detail.

    sometimes they display different detail as I want them to be but everything seems to change dynamically.

    How do I control the sidebox banners? Is there something in Cherry Zen that needs an adjustment or is this a ZC issue?

    I hope my question is clear.

    Peppyone

 

 

Similar Threads

  1. Simple Zen Template - Support Thread
    By jettrue in forum Addon Templates
    Replies: 461
    Last Post: 27 Apr 2013, 01:33 AM
  2. Fresh Zen -- JellyFish Template Support Thread
    By magicbox in forum Addon Templates
    Replies: 93
    Last Post: 11 Apr 2012, 08:54 AM
  3. Free Template "Future Zen" v1.2 Support Thread
    By kuroi in forum Addon Templates
    Replies: 69
    Last Post: 16 Jul 2010, 06:00 AM
  4. Mix Cherry Zen Template with Default template
    By Globie in forum General Questions
    Replies: 1
    Last Post: 31 Oct 2008, 08:21 PM

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