Adding Ireland to McJiffy Ebay Script?

Status
Not open for further replies.

mneylon

Administrator
Staff member
Has anyone had any luck in adding Ireland to the McJiffy eBay script? It doesn't come with it by default

Looking at the code for defining the other countries I tried to set Ireland up as an option, but there's obviously something wrong. The script will pull in the listings, but none of the links work if I set the locale to Ireland :(

Here's how the code looks for the US:
Code:
$countrySettings['en-us']['GEO_COUNTRY_TLD'] ='com';
$countrySettings['en-us']['GEO_PLACEMENT_ID'] ='711-53200-19255-0';
$countrySettings['en-us']['GEO_SITE_ID'] ='0';
$countrySettings['en-us']['GEO_LANGUAGE'] ='en-US';
$countrySettings['en-us']['bin'] = "Buy It Now";
$countrySettings['en-us']['currentbid'] = "Current Bid";
$countrySettings['en-us']['bids'] = "Bids";
$countrySettings['en-us']['ends'] = "Ends";

So based on that I set Ireland up as:
Code:
$countrySettings['en-ie']['GEO_COUNTRY_TLD'] ='ie';
$countrySettings['en-ie']['GEO_PLACEMENT_ID'] ='5282-53468-19255-0';
$countrySettings['en-ie']['GEO_SITE_ID'] ='205';
$countrySettings['en-ie']['GEO_LANGUAGE'] ='en-GB';
$countrySettings['en-ie']['bin'] = "Buy It Now";
$countrySettings['en-ie']['currentbid'] = "Current Bid";
$countrySettings['en-ie']['bids'] = "Bids";
$countrySettings['en-ie']['ends'] = "Ends";

The only bit I'm not really sure about is the "GEO_LANGUAGE" setting, as I can't find that documented in the eBay developer documentation

Anyone have any ideas?
 
Status
Not open for further replies.
Top