FOX - Currency Switcher for WooCommerce

YITH Booking and Appointment for WooCommerce

URL du plugin : https://yithemes.com/themes/plugins/yith-woocommerce-booking/ Dans le fichier functions.php du thème WordPress actuel, ajoutez le code suivant :
add_filter('yith_wcbk_get_price_to_display', function ($price) {

    if (class_exists('WOOCS') AND $price > 0) {
        global $WOOCS;
        $price = $WOOCS->woocs_exchange_value(floatval($price));
    }

    return $price;
});