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?
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?
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.