Quote Originally Posted by agcolbert View Post
Hello
I would like my Checkout link to redirect to the Shopping cart link if it is clicked when the cart is empty. Similar to earlier request...



If someone could point me in the direction of where the code should go then I would happily play with it (until I break it!).

Thanks
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.


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!