Wrong payment currency with Paypal in WooCommerce

29 views Asked by At

In WooCommerce, I have a dropdown to change the currency.

On the checkout page, the prices are in pounds, but when paying with PayPal, it gives me euros.

I tried using:

add_filter('woocommerce_currency', 'change_existing_currency', 10, 1);
function change_existing_currency( $currency ) {
  $currency = 'GBP';

  return $currency;
}

But It doesn't solve the problem.

Is there a function or a hook to change the payment currency?

The product details:

the product details


Paying with PayPal:

paying with PayPal

0

There are 0 answers