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

Currency converter not changing Australian Dollars, UAE & Saudi Ryal

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.. In my website https://machinecricket.com i am using this currency converter plugin and i am finding 2 issues as follows:

  1. First issue is that currency converter is not reflecting some changed amounts especially when i select Australian Dollars, UAE & Saudi Ryal
  2. Secondly, My Add-ons were not reflecting changed amounts according to changed currencies in currency converters. So, i followed this article https://currency-switcher.com/woocommerce-product-add-ons#/woot-gallery-woof and after that, half of the issue is resolved. At the bottom, near to"Add to Cart" button, it's reflecting the selected Add-on amount according to selected currency like in Dollars or Pounds or Sterlings but where user selects/clicks the Add-on, there it's not changing the amount.

Please check this product https://machinecricket.com/product/machine-beast-edition/ as an example. Please resolve this issue on urgent basis because our website is live and people are booking orders. Thanks in advance..!!

Hello

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

  1. Because the exchange rate is 1. Please  watch  this  video - https://currency-switcher.com/video#video_1
  2. This is an incompatibility with a third party plugin, if the code doesn't help you can create a new customization request - https://currency-switcher.com/woocs-labs

Thanks. First issue is resolved now. I have also submitted Item Purchase Code as per the screenshots.

Secondly, on this link https://currency-switcher.com/woocs-labs where to generate request. There is option to create ticket. i did so. That's why we are communicating.

Please help in resolving this minor issue as well where with Add-ons Label text just, currency symbol is changing, not the amount.(Here's the problem)

At the bottom, with"Add to Cart" button during calculation, currency is successfully changing. (So, it's perfect there.)

Hello

please  drop  me  wp-admin+ftp access  to your test site - https://share.pluginus.net/image/i20210618130558.png ->https://share.pluginus.net/image/i20210618130637.png

I'll add it to the adaptation queue

Hi, details updated. Please check.. Thanks in advance..!! :)

Hello

OK! Thank you

I will write to you as soon as we get the result

Thank you so much..!! I will wait for your update. Please do the needful as soon as possible because we have launched the website and could receive orders anytime(campaigns are active on google & social media).

We'll do it as soon as it's your turn.

Hello

Please  do  a test

My test - https://c2n.me/4gDH6Kk

I added a  code  in functions.php :

add_filter( 'woocommerce_product_addons_option_price', function($price_html, $option, $i, $type){

if (class_exists('WOOCS')) {
$price = ! empty( $option['price'] ) ? $option['price'] : '';
$price_prefix = 0 < $price ? '+' : '';
$price_type = ! empty( $option['price_type'] ) ? $option['price_type'] : '';
$price_raw = apply_filters( 'woocommerce_product_addons_option_price_raw', $price, $option );
$label = ( '0' === $option['label'] ) || ! empty( $option['label'] ) ? $option['label'] : '';
if ( 'percentage_based' != $price_type && $price_raw) {
global $WOOCS;
$price_raw = $WOOCS->woocs_exchange_value(floatval($price_raw));
$price_html = $price_raw ? '(' . $price_prefix . wc_price( WC_Product_Addons_Helper::get_product_addon_price_for_display( $price_raw ) ) . ')' : '';
}

}
return $price_html;
},10,4);