Tamsyn, on Jun 3 2005, 03:30 PM, said:
I've got points being added and showing up in the account ok.
I can't redeem them though. There is no box on the checkout_payment.php page.
I'm being stupid
Tamsyn
Posted 03 June 2005 - 02:48 PM
Tamsyn, on Jun 3 2005, 03:30 PM, said:
Posted 03 June 2005 - 02:50 PM
burt, on Jun 3 2005, 03:36 PM, said:
Posted 03 June 2005 - 02:52 PM
Tamsyn, on Jun 3 2005, 03:32 PM, said:
Posted 03 June 2005 - 04:41 PM
Posted 03 June 2005 - 04:57 PM
deep-silver, on Jun 3 2005, 05:41 PM, said:
Posted 03 June 2005 - 05:34 PM
fatmcgav, on Jun 4 2005, 02:57 AM, said:
Posted 03 June 2005 - 06:05 PM
deep-silver, on Jun 3 2005, 06:34 PM, said:
Edited by fatmcgav, 03 June 2005 - 06:05 PM.
Posted 03 June 2005 - 06:48 PM
Posted 03 June 2005 - 07:00 PM
deep-silver, on Jun 3 2005, 07:48 PM, said:
Edited by fatmcgav, 03 June 2005 - 07:02 PM.
Posted 03 June 2005 - 07:12 PM
Posted 04 June 2005 - 08:31 AM
Posted 04 June 2005 - 12:25 PM
Posted 04 June 2005 - 01:58 PM
Jospin, on Jun 4 2005, 01:25 PM, said:
Posted 04 June 2005 - 03:13 PM
Jospin, on Jun 4 2005, 10:25 PM, said:
Posted 04 June 2005 - 05:07 PM
Posted 05 June 2005 - 04:14 AM
Versandhaus, on Jun 5 2005, 03:07 AM, said:
##### Points/Rewards Module v1.00 check for errors BOF #######
//force customers to select other payment method if the points total not enough to cover the cost.
//ICW includes for CREDIT CLASS
//if ( ( is_array($payment_modules->modules) && (sizeof($payment_modules->modules) > 1) && !is_object($$payment) ) || (is_object($$payment) && ($$payment->enabled == false)) ) {
if ( (is_array($payment_modules->modules)) && (sizeof($payment_modules->modules) > 1) && (!is_object($$payment)) && (!$credit_covers) && ($order->info['total'] > $customer_shopping_points_spending )) {
tep_redirect(tep_href_link(FILENAME_CHECKOUT_PAYMENT, 'error_message=' . urlencode(ERROR_NO_PAYMENT_MODULE_SELECTED), 'SSL'));
}
// customer can't use points over the order total
if ($customer_shopping_points_spending * REDEEM_POINT_VALUE > $order->info['total']) {
$customer_shopping_points_spending = 0;
tep_redirect(tep_href_link(FILENAME_CHECKOUT_PAYMENT, 'error_message=' . urlencode(REDEEM_SYSTEM_ERROR_POINTS_OVER), 'SSL'));
}
######## Points/Rewards Module v1.00 EOF #################*/ Posted 05 June 2005 - 06:49 AM
Posted 05 June 2005 - 09:52 AM
Versandhaus, on Jun 5 2005, 04:49 PM, said:
Posted 05 June 2005 - 10:53 AM
Posted 05 June 2005 - 07:25 PM