Onesimpleman Posted January 19, 2005 Posted January 19, 2005 (edited) You can activate AUD in standard and ipn modules by following this procedure. Go to Admin/currencies and add a new currency australian dollars if it is not already there. AUD is the currency code. Also go to Admin/modules/paypal_ipn or paypal(standard) which ever the case may be to accept selected currencies. Now for Paypal IPN Edit \catalog\includes\modules\payment\paypal_ipn.php file from if (!in_array($my_currency, array('CAD', 'EUR', 'GBP', 'JPY', 'USD'))) { $my_currency = 'USD'; to if (!in_array($my_currency, array('CAD', 'EUR', 'GBP', 'JPY', 'USD', 'AUD'))) { $my_currency = 'USD'; For Paypal standard Edit Edit \catalog\includes\modules\payment\paypal.php file from if (!in_array($my_currency, array('CAD', 'EUR', 'GBP', 'JPY', 'USD'))) { $my_currency = 'USD'; to if (!in_array($my_currency, array('CAD', 'EUR', 'GBP', 'JPY', 'USD', 'AUD'))) { $my_currency = 'USD'; This way customers choosing currency as australian dollar can pay in AUD using paypal. Mail me if you have any problems. Edited January 19, 2005 by Onesimpleman Quote
ausipodskins Posted January 20, 2005 Posted January 20, 2005 I'm just wondering what the significance of this line is: $my_currency = 'USD'; If we are primarily selling and being paid in $AU, should $my_currency be changed to 'AUD'? Quote
Onesimpleman Posted January 22, 2005 Author Posted January 22, 2005 I'm just wondering what the significance of this line is: $my_currency = 'USD'; If we are primarily selling and being paid in $AU, should $my_currency be changed to 'AUD'? <{POST_SNAPBACK}> That line is for people who select any other currency than the 6 paypal currencies. Those who select others ( in my case South african Rand) should be billed in USD, may be USD is the standard all over the world and makes it easier for customers to convert, but if u do not sell outside auz then you can change it to AUD. Quote
AaronMihe Posted January 30, 2005 Posted January 30, 2005 On the Devosc IPN COntribution you can also add AUD to the Currency selection list in the Admin and turn it on and off as you like ;) A. Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.