Please Make it Compatible with FOX Multi currency
-
Hi team,
First of all, thank you for your great work on this plugin.
I’m currently using your plugin for my platform, and it’s been very helpful. However, I’d like to kindly request that you consider making it natively compatible with the FOX – WooCommerce Multi Currency plugin.
I sell digital products worldwide, and multi-currency support is essential for offering a better experience to my international customers. While I understand that not all integrations are possible by default, FOX developers have already provided a small and clean code snippet that solves the issue and allows full compatibility.
This is the code that needs to be added in:
wp-content/plugins/sellkit/includes/elementor/modules/checkout/classes/global-hooks.phpif (class_exists(‘WOOCS’)) {
global $WOOCS;
if ($WOOCS->is_multiple_allowed) {
$currrent = $WOOCS->current_currency;
if ($currrent != $WOOCS->default_currency) {
$currencies = $WOOCS->get_currencies();
$rate = $currencies[$currrent][‘rate’];
$price = $price / $rate;
}
}
}Please see this line: https://share.pluginus.net/image/i20250509141044.png
It’s a very small change, but it would help many users like me who sell globally and rely on currency conversion. Also, this addition could help your plugin stand out as more robust and versatile for international WooCommerce setups.
Please consider adding this in a future update or providing a hook so this logic can be injected without editing the core files.
Thanks in advance for your attention and for considering this request.
Best regards,
Kenedy
The topic ‘Please Make it Compatible with FOX Multi currency’ is closed to new replies.