diff --git a/angelleye-includes/angelleye-utility.php b/angelleye-includes/angelleye-utility.php index c12cd1033..e51108b17 100644 --- a/angelleye-includes/angelleye-utility.php +++ b/angelleye-includes/angelleye-utility.php @@ -1507,6 +1507,7 @@ public static function round($price) { * @return type */ public static function number_format($price) { + $price = str_replace(',', '.', $price); $decimals = 2; if (!self::currency_has_decimals(get_woocommerce_currency())) { $decimals = 0;