FOX - Currency Switcher for WooCommerce

Comment arrondir les prix à 10 cents

Dans le fichier functions.php du thème WordPress actuel, ajoutez le code suivant :
add_filter('woocs_raw_woocommerce_price', function($price) {
    return round($price * 10, 0) / 10;
});

add_filter('woocs_woocommerce_variation_prices', function($price) {
    return round($price * 10, 0) / 10;
});