1

All my buyers are using Australian currency and paypal shows USD to them when they are about to make payment,

I want to change this. How do I change the currency at "paypal page" from USD to AUD?

Amit Verma
  • 40,709
  • 21
  • 93
  • 115
Aditya Singh
  • 97
  • 2
  • 12

1 Answers1

2

You need to pass a currency code into whatever method you're using to integrate PayPal.

If you're using Payments Standard then you would add the following to your button or form.

<input type="hidden" name="currency_code" value="AUD" />

If you're working with the APIs then the parameter is CURRENCYCODE and the value would be the same.

Drew Angell
  • 25,968
  • 5
  • 32
  • 51