That Software Guy. My Store: Zen Cart Support
Available for hire - See my ad in Services
Plugin Moderator, Documentation Curator, Chief Cook and Bottle-Washer.
Do you benefit from Zen Cart? Then please support the project.
Ok I have installed the mod and loving it ... I have the buttons to save in product info display and the cart. The only problem I can see here is how can I access what is saved in my cart without having to add a further product?
If your cart is empty but you have saved items I cannot see a way of displaying those saved items unless I add another to the cart .. then I get all the products in the cart and saved list where I can move them around.
Is it not possible to have a link where I can click on (say) "Saved Items" to get to the checkout?
That Software Guy. My Store: Zen Cart Support
Available for hire - See my ad in Services
Plugin Moderator, Documentation Curator, Chief Cook and Bottle-Washer.
Do you benefit from Zen Cart? Then please support the project.
Ok I have found a way to patch this:
1. In includes/languages/english/YOUR TEMPLATE/header.php
add: define('HEADER_TITLE_CART_SAVED', 'Saved Products');
2. In includes/templates/YOUR TEMPLATE/common/tpl_header.php
find: <li><a href="<?php echo zen_href_link(FILENAME_ACCOUNT, '', 'SSL'); ?>"><?php echo HEADER_TITLE_MY_ACCOUNT; ?></a></li>
then add after:
<li><a href="<?php echo zen_href_link(FILENAME_SHOPPING_CART, '', 'NONSSL'); ?>"><?php echo HEADER_TITLE_CART_SAVED; ?></a></li>
Clicking on this link when logged in will take you to your shopping cart which may be empty or will display saved products.
3. Finally in includes/languages/english/shopping_cart.php
change:
define('TEXT_CART_EMPTY', 'Your download cart is empty.');
with
define('TEXT_CART_EMPTY', 'Your cart is empty.<br/><br />You have no saved products');
Save for Later has been updated for Zen Cart 1.5.5.
That Software Guy. My Store: Zen Cart Support
Available for hire - See my ad in Services
Plugin Moderator, Documentation Curator, Chief Cook and Bottle-Washer.
Do you benefit from Zen Cart? Then please support the project.