FOX - Currency Switcher for WooCommerce

YITH WooCommerce Product Bundles

URL du plugin : https://yithemes.com/themes/plugins/yith-woocommerce-product-bundles/
  • à votre thème enfant WordPress actuel, dans le fichier functions.php, ajoutez le code suivant :
    add_filter('woocs_fixed_raw_woocommerce_price', function ($tmp_val, $product, $price) {
        if (!$price) {
            $tmp_val = $price;
        }
    
        return $tmp_val;
    }, 99, 3);