
Originally Posted by
Trinity14
There is no switch in admin to show the Sale Maker Discount.
I believe the template you need to modify is includes/templates/YOUR_TEMPLATE/tpl_shopping_cart_default.php
Awesome! Thanks for the help Trinity!!!!
I was able to copy the below code from another template and put it into the tpl_shopping_cart_default.php:
Code:
<?php
$one_time = ($show_onetime_charges_description == 'true') ? ('<span>' . TEXT_ONETIME_CHARGE_SYMBOL . TEXT_ONETIME_CHARGE_DESCRIPTION . '</span><br>') : '';
echo $one_time . ((zen_has_product_attributes_values((int) $product['id']) AND $flag_show_product_info_starting_at == 1) ? TEXT_BASE_PRICE : '') . zen_get_products_display_price((int) $product['id']);
?>
The above replaced this line:
Code:
<?=$product['productsPriceEach']?>
Appears to be working.
Thanks a billion for the help, I greatly appreciate it!
Bookmarks