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

Purchasing in IP Country currency

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

We are based in the UK using £GBP as the base currency.

We want to use addtional currencies, € & $, on the site, we know how to configure those.

We want to use GeoIP, so for example a customer in France will see € prices but when they checkout they have to make payment in GBP.

Also we do not want the customer in France to see the price in $USD or any other currencies ( just the base currency)

Is all this possible in the Settings on the full version of the programme?

Thank you

Peter

Hello Peter

In this case, you need to add some extra code to functions.php

An  example:

add_filter('wp_head',function(){
if(class_exists('WOOCS')){
global $WOOCS;
if(is_checkout()){

$WOOCS->set_currency('GBP');
}else{
$country = $WOOCS->storage->get_val('woocs_user_country');
$user_currency = $WOOCS->get_currency_by_country($country);
if (!empty($user_currency)) {

$WOOCS->set_currency($user_currency);
}
}
}
});