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?

