FOX - Currency Switcher for WooCommerce

YITH Booking and Appointment for WooCommerce

Plugin-URL: https://yithemes.com/themes/plugins/yith-woocommerce-booking/ In der Datei functions.php des aktuellen WP-Themes fügen Sie den folgenden Code hinzu:
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;
});