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

Pre Sales Question

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, for you  plugin WooCommerce Currency Switcher -> has the following features?

- to display a specific currency by country. But the country is set by the billing address or a specific field I create for the user. Could I use your filter -> https://currency-switcher.com/disallow-any-currency-for-any-country/ but getting the billing adress county field instead?

- Also, the woo commerce standard report will show the purchases reports with the different currencies? So for example Orders report, Products sales report or Categorie sales report can be filtered by currency? Like this -> https://imgur.com/a/k6seXFS. So if we buy https://aelia.co/shop/currency-switcher-woocommerce/ has the following we can see those filters?

Many thanks

Jose

 

Hello Jose

1 For this functionality, you need code customization. An Example:

add_filter('wp_head',function(){
if(class_exists('WOOCS')){

$country = get_your_country();
global $WOOCS;

switch($country){

case 'us':

$WOOCS->set_currency('USD');

break;

default:

$WOOCS->set_currency('EUR');

}

}
});

2 Unfortunately the plugin does not have such a filter.