FOX - Currency Switcher for WooCommerce

YITH WooCommerce Deposits and Down Payments

Lien du plugin : https://yithemes.com/themes/plugins/yith-woocommerce-deposits-and-down-payments/ Dans le fichier functions.php du thème WordPress actuel, ajoutez le code suivant :
add_filter('yith_wcdp_single_deposit_price', function($deposit_price, $deposit_value) {

    if (class_exists('WOOCS')) {
        global $WOOCS;
        if ($WOOCS->is_multiple_allowed) {
            $deposit_price = wc_price($WOOCS->woocs_exchange_value(floatval($deposit_value)));
        }
    }

    return $deposit_price;
}, 2, 99);