If you send paypal a country code and it works its a great feature.
Customers choosing for example 'Germany' as their location are greeted with a paypal page all in German.
I have had this working fine on my site for about 2 years.. it recently stopped working. I used this code, supplied by actinic on this forum;
It changes the Actinic country code 'UK' to 'GB' (which is the paypal country code for the UK) and forwards all the other country codes.
This has worked well, but has broken recently in an odd way.
Choosing your location as the UK ends up at paypal as USA.. and the other address details dont get through.
If you choose USA, the state and other address details are not passed over..
Choosing France, Germany etc all still work fine!!!
A strange malfunction.
Does anyone have any idea why this code might no longer be working?
Customers choosing for example 'Germany' as their location are greeted with a paypal page all in German.
I have had this working fine on my site for about 2 years.. it recently stopped working. I used this code, supplied by actinic on this forum;
Code:
my $sCountry = $::g_LocationInfo{INVOICE_COUNTRY_CODE}; $sCountry =~ s/^GB$/UK/; AddPostValues ('&', 'country', $sCountry, $OPTION, $REDIRECT);
This has worked well, but has broken recently in an odd way.
Choosing your location as the UK ends up at paypal as USA.. and the other address details dont get through.
If you choose USA, the state and other address details are not passed over..
Choosing France, Germany etc all still work fine!!!
A strange malfunction.
Does anyone have any idea why this code might no longer be working?
Comment