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 Conversion Decimal Difference

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 am using WooCommerce Currency Switcher - Multi-Currency with woo-commerce and when switching currency from GBP to USD there is a decimal price difference which varies as bigger the price bigger the difference.

Eg : £100.00$128.93  with conversion rate 1.28925 where as if i check on google its says  £100.00  = $128.92

Can you please help me out on this?

 

 

Hello

You  can  try another aggregator

Or add  this  code  to  functions.php

add_filter('woocs_currency_data_manipulation', function ($currencies) {
foreach ($currencies as $key => $value) {
$currencies[$key]['rate'] = floor($value['rate'] * 100) / 100;
}

return $currencies;
}, 99, 1);

After suggested code implementation, we are still having a decimal difference. As its a ecommerce website price conversion difference is one big issue . Please help me out

With Code GBP 100 - $129
Without Code  GBP 100  - $129.05
Price from Google Converter GBP 100 - $129.28 

Hello

Please use another  aggregator.

our plugin cannot manage bank rates. The plugin uses the rates it receives from the aggregator of your choice

Can you suggest one!

Hello

I do not know which aggregator will be more profitable for you - https://c2n.me/49w7Pfi.png

Or you can add a custom aggregator - https://currency-switcher.com/how-to-add-its-own-custom-currency-aggregator/