Hello,
We can’t assist you with this issue. Payment method handled by Woocommerce. So, if your payment method is Woocommerce supported, you can use this plugin.
Regards.
Thread Starter
Wayne
(@waynep16)
I have added custom currency to the default woo settings using this plug in
https://wpcodefactory.com/item/woocommerce-all-currencies-plugin/
This works good BUT now i am using a currency switcher plug in to switch the prices for example
https://ww.wp.xz.cn/plugins/woo-multi-currency/
But…. because the prices in your plug in doesn’t conform to proper woocomerce coding, the prices don’t switch using currency switch plug ins (not the fault of the currency switch plug in because it works fine when on checkout and cart page) you just need to update your plug in where it shows any prices to be formatted using the woo coding
i hope this makesese?
Thread Starter
Wayne
(@waynep16)
The plugin calls function get_woocommerce_currency() to fetch what it should be the order currency. This is incorrect, and it only works in single-currency environments. In multi-currency configurations, function get_woocommerce_currency() returns the active currency, which may or may not match the one from the order.
The fix is simple, and it involves calling $order->get_currency() instead.
Thanks a lot. I’ll share this with our dev team.