Gossamer Forum
Home : Products : Gossamer Links : Discussions :

PayPal payments and Australian dollars

Quote Reply
PayPal payments and Australian dollars
This is probably for GT as it involves a change to the core code.

In the Payment setup, PayPal currencies can be Canadian Dollars, Euros, Pounds Sterling, US Dollar, Yen.

PayPal also now accepts Australian Dollars, and for Australian-based sites this would be the currency of choice (I have a site in development at the moment where this applies). If possible, can AU dollars please be added to the list of currencies in the PayPal setup?
Quote Reply
Re: [aus_dave] PayPal payments and Australian dollars In reply to
Hi,

As far as I can see, it should be as simple as opening up /admin/Links/Payment/Rermote/PayPal.pm, and finding;

Code:
for (qw/USD CAD EUR GBP JPY/) {
push @currencies, $_ => Links::language('PAYMENT_CURRENCY_' . $_);
}

..change to;

Code:
for (qw/USD CAD EUR GBP JPY AUD/) {
push @currencies, $_ => Links::language('PAYMENT_CURRENCY_' . $_);
}

(I'm guessing its AUD for Austalian $?)

That should do it <G>

Cheers

Andy (mod)
andy@ultranerds.co.uk
Want to give me something back for my help? Please see my Amazon Wish List
GLinks ULTRA Package | GLinks ULTRA Package PRO
Links SQL Plugins | Website Design and SEO | UltraNerds | ULTRAGLobals Plugin | Pre-Made Template Sets | FREE GLinks Plugins!
Quote Reply
Re: [Andy] PayPal payments and Australian dollars In reply to
Thanks Andy, I'll give that a try.

There haven't been many updates lately so I thought I'd keep things moving Wink.
Quote Reply
Re: [aus_dave] PayPal payments and Australian dollars In reply to
I guess they added support for the Australian dollar after we initially added PayPal support. I've committed the addition to cvs. If anyone wants this change, but doesn't want to do it themselves, I can add it to the updates system.

Adrian