FOX - Currency Switcher for WooCommerce

WooCommerce Product Addons by Najeeb Ahmad

Complemento: https://wordpress.org/plugins/woocommerce-product-addon/ La compatibilidad se implementa directamente en WooCommerce Product Addons También en el archivo functions.php del tema actual de WordPress añade el siguiente código:
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;
});