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

display different currencies in different product collections/categories

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 guys, I am interested in getting the product Currency Switcher.

What I am trying to achieve is the following:

  • Be able to manually add the different price to the different currency (I know this plugin can do)
  • Be able to create different pages to show a category of products already showing a certain currency. For example, I want to have a page showing a certain collection of products all in Euro and client not be able to change the currency. But I will also have the same collection of products showing on another page in US dollar, and again, client shouldn‘t be able to change the currency.

Would that be possible with your plugin?

Thanks

Deborah

Hello Deborah

You need code customization.

Example:

add_filter('wp_head',function(){
if(is_page("yoor_page_id_or_slug")){
global $WOOCS;
$WOOCS->set_currency('EUR');
}
});