FOX - Currency Switcher for WooCommerce

WooCommerce Product Addons by Najeeb Ahmad

Plugin: https://wordpress.org/plugins/woocommerce-product-addon/ Die Kompatibilität ist direkt in WooCommerce Product Addons implementiert. Fügen Sie außerdem in der Datei functions.php des aktuellen WordPress-Themes den folgenden Code ein:
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;
});