Accepted PayPal currencies
Read actual info here: https://developer.paypal.com/docs/reports/reference/paypal-supported-currencies/
If the currency is omitted of the list, the default currency will be U.S. Dollars – so be care with adding currencies into woocommerce store as acceptable by PayPal – on PayPal checkout page if currency is not acceptable amount will be the same but in USD!!
Example:
Customer decided to activate PayPal gate for Korean Won KRW by the next script:
add_filter('woocommerce_paypal_supported_currencies', 'custom_woocommerce_paypal_supported_currencies'); function custom_woocommerce_paypal_supported_currencies($paypal_currencies) { if ($paypal_currencies) { $paypal_currencies[] = 'KRW'; return $paypal_currencies; } }
But it is a wrong way to making acceptable payments in the currency you want as it is NOT in the PayPal list of acceptable currencies!! Do not do it to avoid confusing with payments!