Error due to division by zero
-
Hi, thank you for a great plugin, best one i used for currencies.
My website crashed today due to a division by zero. Have not seen this before, might be related to an update?
I dont use currency conversion by rate, i specify all prices per product in each currency so my rates are 0.
In file classes/woocs.php
line: 5473 & 5476,
Please add 0-support for:
$markup_offer[“priceSpecification”][“price”] = number_format($markup_offer[“priceSpecification”][“price”] / $rate, $precision, ‘.’, ”);
Suggestion:
$currentRate = $rate > 0 ? $markup_offer[“priceSpecification”][“price”] / $rate : 0;
number_format($currentRate, $precision, ‘.’, ”);
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- You must be logged in to reply to this topic.