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.