PluginUs.Net - Business Tools for WooCommerce and WordPress

[realize your idea - make your dreams come true]

Support Forum

You need to log-in to create request (topic) to the support

Shipping costs

🎄 Holiday Notice - Support Vacation 🎄

ATTENTION: From December 28, 2025 to January 6, 2026 our support team will be on vacation.

Important information:

  • No ticket responses from December 28 to January 6
  • Support will resume on January 7, 2026
  • 📝 You can still submit tickets during vacation - they will be queued and answered starting January 7
  • ⚠️ Urgent technical issues: Please check our documentation and codex first

🎅 Season's Greetings! 🎅

We want to thank all our amazing customers for your trust and support throughout 2025!
Merry Christmas and Happy New Year to you and your families! 🎉

We wish you:

  • 🚀 Successful online stores
  • 💰 Growing sales
  • 😊 Happy customers
  • 🎯 Achieved goals in 2026

Thank you for being with us! We appreciate every one of you and look forward to continuing our work together in the new year.

Rest, recharge, and see you in 2026!

Best regards,
PluginUs.Net Team

The support doesn work on Saturdays and Sundays, so some Friday requests can be answered on Monday. If you have problems with registration ask help on contact us page please
If you not got email within 24~36 business hours, firstly check your spam box, and if no any email from the support there - back to the forum and read answer here. DO NOT ANSWER ON EMAILS [noreply@pluginus.net] FROM THE FORUM!! Emails are just for your info, all answers should be published only here.
The support doesn work on Saturdays and Sundays, so some Friday requests can be answered on Monday.

Hello, we have a problem with some stores in Argentina.

These stores use dollars as their base currency, and we use Currency Switcher to show prices to users in pesos.

This works perfectly, the problem we're having is when we want to connect the emails we use in Argentina. The plugin for these emails uses the information users enter at checkout to calculate a shipping cost based on the product's weight and delivery address. The issue is that this value arrives from the email in Argentine pesos, and the shipping cost becomes enormous because the system converts those pesos to US dollars. Is there any way to exclude shipping costs in FOX - Currency Switcher Professional? Thanks.

Hello

I can only siggest some ideas how to make it together, but this question shoul be reviewed by your site developer, so, this is a issue when shipping plugins calculate costs in the customer's selected currency. FOX then converts it again because it treats all prices as base currency by default.

Solution 1: Exclude shipping from conversion (recommended)

Add this code to your theme's functions.php or a custom plugin:

add_filter('woocs_exchange_value', function($value) {
    // Exclude shipping from currency conversion
    if (doing_action('woocommerce_cart_calculate_fees') || 
        doing_action('woocommerce_calculate_totals')) {
        return $value;
    }
    return $value;
}, 10, 1);

// Better approach - exclude shipping methods specifically
add_filter('woocommerce_shipping_rate_label', function($label, $method) {
    // Mark shipping as already converted
    if (!isset($method->meta_data['woocs_converted'])) {
        $method->meta_data['woocs_converted'] = true;
    }
    return $label;
}, 10, 2);

Solution 2: Configure shipping plugin

Check if your shipping email plugin has an option to return prices in the base currency (USD) instead of the selected currency. This would be the cleanest solution.

Solution 3: Use"Is multiple allowed = NO"

In FOX settings set"Is multiple allowed" to NO. This prevents FOX from converting values that are already in pesos.