FOX - Currency Switcher for WooCommerce

WooCommerce Product Addons by Najeeb Ahmad

Extension : https://wordpress.org/plugins/woocommerce-product-addon/ La compatibilité est implémentée directement dans WooCommerce Product Addons Aussi dans le fichier functions.php du thème WordPress actuel, ajoutez le code suivant :
add_filter('ppom_option_price', function ($price) {
    if (class_exists('WOOCS') && !empty($price)) {
        global $WOOCS;
        if ($WOOCS->is_multiple_allowed) {
            $price = $WOOCS->woocs_exchange_value($price);
        }
    }
    return $price;
});