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

Auto change currency based on customer country

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.

Is this possible to Auto change currency based on customer country? If the visitor is from the United States it displays product price in USD and if the customer is from the United Kingdom it displays product price in GBP.  I have found this but how to implement it ?
https://currency-switcher.com/function/woocs-get_currency_by_country/

Hello

Please  watch  a video - https://currency-switcher.com/video-tutorials#video_1

Use  GeoIP  rules - https://c2n.me/47733Sd.png

Read  this - https://currency-switcher.com/using-geolocation-causes-problems-doesnt-seem-to-work-for-me/

 

If you want the user to not be able to change the currency.  Add  in  functions.php

add_filter('wp_head',function(){

global $WOOCS;
$customer_country = $WOOCS->storage->get_val('woocs_user_country')
$currency = $WOOCS->get_currency_by_country($customer_country);

$WOOCS->set_currency($currency );

},99)