Greetings =)
I am having an issues where guest checkout is not updating totals for order total modules such as low order fee and minimum order fee. Neither works and checkout proceeds without adding them at all.
Zen Cart 1.5.5F
PayPal Express & WPP
PHP 7.1.26
OPC 2.0.5 (2018-12-23)
ZCA Bootstrap 1.0.6
Code:
[06-Feb-2019 15:56:26 UTC] PHP Notice: Undefined property: ot_loworderfee::$credit_class in /home/----/public_html/includes/classes/order_total.php on line 125
Code:
2019-02-06 15:56:26 checkout_one: CHECKOUT_ONE_AFTER_ORDER_TOTAL_PROCESSING
order_total::__set_state(array(
'modules' =>
array (
0 => 'ot_subtotal.php',
1 => 'ot_shipping.php',
2 => 'ot_coupon.php',
3 => 'ot_tax.php',
4 => 'ot_loworderfee.php',
5 => 'ot_mfg_min_order.php',
6 => 'ot_gv.php',
7 => 'ot_total.php',
),
Code:
<tr id="otsubtotal">
<td colspan="2" class="text-right bg-white">
Sub-Total:</td>
<td class="text-left bg-white">
$53.85</td>
</tr>
<tr id="otshipping">
<td colspan="2" class="text-right bg-white">
USPS (Priority Mail™):</td>
<td class="text-left bg-white">
$11.16</td>
</tr>
<tr id="ottotal">
<td colspan="2" class="text-right bg-white">
Total:</td>
<td class="text-left bg-white">
$65.01</td>
</tr>
I can provide the whole log if necessary, it's a dev environment.
Code:
2019-02-06 15:56:36 checkout_one_confirmation: Initial order information:order::__set_state(array(
'info' =>
array (
'order_status' => '1',
'currency' => 'USD',
'currency_value' => '1.00000000',
'payment_method' => NULL,
'payment_module_code' => NULL,
'coupon_code' => NULL,
'shipping_method' => 'USPS (Priority Mail™)',
'shipping_module_code' => 'usps_Priority MailTM',
'shipping_cost' => 11.160000000000000142108547152020037174224853515625,
'subtotal' => 53.85000000000000142108547152020037174224853515625,
'shipping_tax' => 0,
'tax' => 0.0,
'total' => 65.0100000000000051159076974727213382720947265625,
'tax_groups' =>
array (
'Sales Tax' => 0.0,
),
'comments' => '',
Any ideas?
Thanks,
~Melanie
Bookmarks