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

Set prices un EUR, but defalut different 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!

Is is posssible to set prices in EUR for each product, but to display a different currency as default in my shop?

Example: there is EUR and PLN currency. I need to set price for the chair for 40 EUR, but I want to display its price in PLN by default.

Thanks for letting me know!

Hello

Yes! If you want the user to not be able to switch currencies  try  to add  this  code  in  functions.php:

add_filter('wp_head',function(){    
    if(class_exists('WOOCS')){
        global $WOOCS;
        $WOOCS->set_currency('USD');
    }
});