CURRENCY_NOT_SUPPORTED
-
Hello,
I’m from Bahrain. My WooCommerce currency is “.?.?” . In my another online shop I’ve been using local payment gateway and Paypal together without any issues. The was a problem at first by I fixed that with this code:
add_filter('woocommerce_paypal_supported_currencies', 'add_sar_currency'); function add_sar_currency ($array) { array_push($array, 'SAR', 'AED', 'BHD', 'QAR', 'EGP', 'OMR', 'KWD', '.?.?', '.?.?'); return $array; }
Now for my new another store, I’ve installed WooCommerce and I can see that “PayPal Standard” isn’t available anymore. And I can’t use the local payment gateway and Paypal together. It’s not working even after adding the above code.
It’s showing that below error in the checkout page:[UNPROCESSABLE_ENTITY] The requested action could not be performed, semantically incorrect, or failed business validation. https://developer.paypal.com/docs/api/orders/v2/#error-CURRENCY_NOT_SUPPORTED
Please let me know how can I fix that issue in “WooCommerce PayPal Payments” or if it’s not possible how can I use “Paypal Standard” instead?
- The topic ‘CURRENCY_NOT_SUPPORTED’ is closed to new replies.