You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
error: A non well formed numeric value encountered exception when calling getTotal() and cart value is over 1000 with a condition applied.
example exception: Darryldecode\Cart\CartCondition->apply('1,154.00', '-10.00')
I was able to fix it by adding-
$totalOrSubTotalOrPrice = str_replace(',', '', $totalOrSubTotalOrPrice);
on line 191 CartCondition.php
The text was updated successfully, but these errors were encountered:
error: A non well formed numeric value encountered exception when calling getTotal() and cart value is over 1000 with a condition applied.
example exception: Darryldecode\Cart\CartCondition->apply('1,154.00', '-10.00')
I was able to fix it by adding-
$totalOrSubTotalOrPrice = str_replace(',', '', $totalOrSubTotalOrPrice);
on line 191 CartCondition.php
The text was updated successfully, but these errors were encountered: