• Resolved kenedyt

    (@kenedyt)


    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.php

    if (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

    • This topic was modified 1 year ago by kenedyt.
Viewing 6 replies - 1 through 6 (of 6 total)
  • Plugin Author Nima Golestani

    (@artbeesnima)

    Dear Kenedy,

    Thank you very much for your valuable feedback and effort — we truly appreciate it.

    As I mentioned in our earlier conversation, your request has been forwarded to our development team for a closer review. They will need to examine it in more detail, and from this point on, it will be handled by them.

    While the solution might seem simple at first glance — possibly just copying a code snippet into our core — it actually depends on several factors. This step needs to be taken with caution to avoid any unintended issues.

    Once again, thank you for your cooperation. I’ll keep you updated on the progress. In the meantime, if you need assistance deploying the code snippet individually, feel free to reach out.

    Best regards,
    Nima
    Artbees Support

    Thread Starter kenedyt

    (@kenedyt)

    I’m currently using your plugin and I really need it to be compatible with the FOX Multi Currency plugin. Right now, it’s not working correctly with multiple currencies, and that’s a key feature for my store.

    I’ve tested it deeply, and the issue is solved by adding just a small snippet of code. Please consider integrating this natively — it would make a huge difference for those of us working with international customers.

    I truly like your plugin and want to keep using it, but this compatibility is essential.

    Thanks for your attention!

    Thread Starter kenedyt

    (@kenedyt)

    Hi, I’m currently in the development phase of a multisite platform and already paid a developer to apply this fix to make SellKit work with FOX Multi Currency. The adjustment works perfectly, and it’s a simple improvement in the core logic.

    I’m willing to pay for a full year of customer support if that helps prioritize this fix and include it officially in the next release. Since the code is already tested and functional, it would be great to just review and integrate it.

    Could you please confirm if this is possible?

    Thank you in advance — it would really make a difference for those of us selling internationally!

    Thread Starter kenedyt

    (@kenedyt)

    Hi, please consider my request to make this compatibility possible! Thanks in advance

    Plugin Author Nima Golestani

    (@artbeesnima)

    Dear Kenedy,

    I really appreciate your effort, and as previously mentioned, we’ve shared the code with our development team for review. If it’s confirmed to be stable and causes no issues, we’ll consider including it in the core for full compatibility with the FOX Multi Currency plugin.

    However, please keep in mind that while it has been submitted to our developers, we cannot guarantee approval or provide a release timeline at this point.

    In the meantime, if you need help with implementing and maintaining this custom code, feel free to take advantage of our WPDone service — our expert team would be happy to assist you.

    Best regards,
    Nima
    Artbees Support

    Thread Starter kenedyt

    (@kenedyt)

    Hi SellKit Support,I’m trying to make you plugin compatible with FOX multi currency, but I’ve encountered a problem due to the way the get_price() method is used in your code.In the global_hooks file, at line 1025, you have the following line:

    $final_price += $details['data']->get_price( $price ) * $details['quantity'];

    However, according to the WooCommerce documentation, the get_price() method expects a string parameter (‘view’ or ‘edit’) — not a numeric price. Passing a price there doesn’t make sense and causes issues. The correct usage should be:

    $final_price += $details['data']->get_price() * $details['quantity'];

    This way, it defaults to ‘view’, which would trigger the appropriate filter hook I can then use to inject my custom discount logic.Ideally, it would also be helpful if Helper::calculate_discount() used apply_filters() on the final price, so we could hook into that more directly.Could you confirm if this is something your team could fix or offer a workaround for?Thanks in advance!

Viewing 6 replies - 1 through 6 (of 6 total)

The topic ‘Please Make it Compatible with FOX Multi currency’ is closed to new replies.