В functions.php свой темы вставьте следующий код
function my_formatted_woocommerce_price($price_number_format, $price, $decimals, $decimal_separator, $thousand_separator) {
if (!fmod($price, 1)) {
return number_format($price, 0, "", $thousand_separator);
}
return...