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 pleaseIf 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.
Quote from evolvertech on September 9, 2022, 11:13Hi.. In my website https://machinecricket.com i am using this currency converter plugin and i am finding 2 issues as follows:
- First issue is that currency converter is not reflecting some changed amounts especially when i select Australian Dollars, UAE & Saudi Ryal
- 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..!!
Hi.. In my website https://machinecricket.com i am using this currency converter plugin and i am finding 2 issues as follows:
- First issue is that currency converter is not reflecting some changed amounts especially when i select Australian Dollars, UAE & Saudi Ryal
- 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..!!
Quote from Pablo Borysenco on September 9, 2022, 12:14Hello
Please paste your license key here - https://share.pluginus.net/image/i20210618130558.png -> https://share.pluginus.net/image/i20210618130614.png
- Because the exchange rate is 1. Please watch this video - https://currency-switcher.com/video#video_1
- 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
Hello
Please paste your license key here - https://share.pluginus.net/image/i20210618130558.png -> https://share.pluginus.net/image/i20210618130614.png
- Because the exchange rate is 1. Please watch this video - https://currency-switcher.com/video#video_1
- 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
Quote from evolvertech on September 9, 2022, 12:58Thanks. 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.)
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.)
Quote from Pablo Borysenco on September 12, 2022, 09:31Hello
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
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
Quote from evolvertech on September 12, 2022, 17:31Hi, details updated. Please check.. Thanks in advance..!! :)
Hi, details updated. Please check.. Thanks in advance..!! :)
Quote from Pablo Borysenco on September 13, 2022, 10:00Hello
OK! Thank you
I will write to you as soon as we get the result
Hello
OK! Thank you
I will write to you as soon as we get the result
Quote from evolvertech on September 13, 2022, 10:26Thank 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).
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).
Quote from Pablo Borysenco on September 13, 2022, 10:42We'll do it as soon as it's your turn.
We'll do it as soon as it's your turn.
Quote from Pablo Borysenco on September 15, 2022, 17:31Hello
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);
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);