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

Conflict with other plugin

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.

Hi,

I'm uisng FOX - Currency Switcher Professional for WooCommerce. I'm also trying to implement Ingrid Delivery Checkout plugin for shipping (version 2. 9. 0) and I'm facing an issue. When we calculate shipping by selecting base currency, the shipping price is fine. And when we are selecting another currency then the shipping price is added to the wrong price. Check this link: https://www.loom.com/share/888a49504717467cad70251e065c4d94?sid=30861e83-864e-45a1-96a7-21873aaca3ed I have debugged it. This is an issue related to base currency.

The conversion is not working properly. https://www.awesomescreenshot.com/video/28089133?key=a9516d406ac73c86704c2919e8e51234

Can you help me with this issue?

Hello

Please paste your license key here - https://share.pluginus.net/image/i20230222134241.png -> https://share.pluginus.net/image/i20230222134511.png

read this - https://currency-switcher.com/woocs-labs

Yes, I see, the problem is that this third-party plugin returns the already converted price. Next, my plugin converts this price again (as it should be for standard shipping prices)

Is there any solution to this? Or any other plugin that is compatible with Fox?

Hello

Please paste your license key here - https://share.pluginus.net/image/i20230222134241.png -> https://share.pluginus.net/image/i20230222134511.png

read this - https://currency-switcher.com/woocs-labs - The article describes if you don’t find a solution, you can make a request for adaptation

Hi,

I'm trying to put in a request in labs but the page leads me nowhere.

Hello

Please drop me exact link to this shipping plugin

add wp-admin+ftp access to your test site - https://share.pluginus.net/image/i20230222134241.png ->https://share.pluginus.net/image/i20230222134615.png

I will add this plugin to adaptation queue

https://krokedil.com/product/ingrid-delivery-checkout-for-woocommerce/

The credentials are added in the private section.

Hello

is this plugin wordpress.org? Or maybe it is sold on some popular platform?

Hi,

It has been downloaded from Krokedil platform. https://krokedil.com/product/ingrid-delivery-checkout-for-woocommerce/

Hello

Unfortunately this offer -  https://currency-switcher.com/woocs-labs   - is only valid for popular plugins.

 

This is the most popular Shipping Plugin in Sweden.

Hello

ok! I will pass this on to the manager, we will analyze this plugin and make a decision.

Hello

Could you  drop  me  wp-admin+FTP access  to  your  test site - https://share.pluginus.net/image/i20230222134241.png ->https://share.pluginus.net/image/i20230222134615.png

And we will make an adaptation for this third-party shipping plugin.

Hi,

I have now updated the info. Please let me know what to do next.

Thanks!

Hello

Ok! I added this plugin to adaptation queue

I'll write to you as soon as we get the result.

Hello

Please do a test

in file - \public_html\wp-content\plugins\ingrid-woo\classes\class-ingrid-checkout.php - I added this code - https://share.pluginus.net/image/i20240628145351.png

if (class_exists('WOOCS') && isset($shipping_info['cost'] ) && $shipping_info['cost']) {
global $WOOCS;
if ($WOOCS->is_multiple_allowed) {
$currrent = $WOOCS->current_currency;
if ($currrent != $WOOCS->default_currency) {
$currencies = $WOOCS->get_currencies();
$rate = $currencies[$currrent]['rate'];
$shipping_info['cost'] = $shipping_info['cost'] / $rate;
}
}
}