DivisionByZeroError
-
I have found an error in the file src/Integration/WooCommerce.php on line 816
$discount = $discount / $item['quantity']I have solved it simply by adding the validation if the discount is 0 do not do the division
if ($discount > 0) {
$discount = $discount / $item['quantity'];
}
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
The topic ‘DivisionByZeroError’ is closed to new replies.