FOX - Currency Switcher for WooCommerce

YITH Booking and Appointment for WooCommerce

URL del plugin: https://yithemes.com/themes/plugins/yith-woocommerce-booking/ En el archivo functions.php del tema actual de WordPress, añade el siguiente código:
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;
});