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

how to change the default currency without affecting the prices already entered or how to set a default currency for payments

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.

Currently on my ecommerce site, I use WooCommerce Currency Switcher free with two currencies that are FRCFA (default) and EURO. I would like to use the payment with paypal checkout but the FRCFA is not recognized by paypal. Also I would like to change the default currency (FRCFA) by the currency EURO.
i would like to still display prices on my store using the FRCA currency, but when customers head to PayPal, they are charged in Euros.

Can you help me?

Thanks in advance!

Hello

Try  to add  this  code  in functions.php

add_filter('wp_head',function(){
if(is_checkout()){
global $WOOCS;
$WOOCS->set_currency('EUR');
}else{

global $WOOCS;
$WOOCS->set_currency('CFA');

}
});