Hi! I installed this and everything was working great until I started getting reports that coupons and group discounts where the total was 100% off (IE not having to pay anything) were not going straight through the checkout, the customers were being taken to Paypal and had to add in a minimum of 1 cent before they could complete the checkout, so I tried uninstalling the module in Order Totals and that didn't work, it wasn't until I removed the following bit from includes/modules/pages/checkout_confirmation/header_php.php:
Code:
// BEGIN REWARDS POINTS
// if credit does not cover order total or isn't selected
if ($_SESSION['credit_covers'] != true) {
// check that a gift voucher isn't being used that is larger than the order
if ($_SESSION['cot_gv'] < $order->info['total']) {
$credit_covers = false;
}
}
// END REWARDS POINTS
if ($credit_covers) {
then it went back to normal, is there a simple fix for this so that I can use the mod again?
Bookmarks