• Resolved Anshul

    (@anshulbijoux)


    Hello, we re using the pro version. However, for multicurrency we use WooCommerce Multi Currency plugin by Villatheme. Does it not support this plugin ?

    We have provided free shipping for above 150 USD. When converted into CAD, it still shows 150 CAD and not 207 CAD (based on the exchange rate).

    Please let us know if we can fix it.

    Thanks

    The page I need help with: [log in to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Devnet

    (@devnethr)

    Hello there, thank you for using our pro version and for bringing up your concern about the WooCommerce Multi Currency plugin by Villatheme. Unfortunately, our plugin doesn’t support that currency plugin at the moment. However, we do support FOX (formerly known as WOOCS) – currency switcher plugin.

    Regarding your concern, you can try using the following code snippet and insert it in the functions.php file of your child theme:

    add_filter('fsl_min_amount', function ($amount) {
        if (function_exists('wmc_get_price')) {
            $amount = wmc_get_price($amount);
        }
        return $amount;
    });

    This code snippet will modify the minimum order amount to work with your Multi Currency plugin. Please let us know if this resolves your issue.

    • This reply was modified 1 year, 11 months ago by Devnet.
    Plugin Author Devnet

    (@devnethr)

    We haven’t heard back from you in a while, so we’re going to go ahead and mark this thread as resolved. If you have any other questions please feel free to start a new thread.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Multicurrency’ is closed to new replies.