Skip to content

Instantly share code, notes, and snippets.

@thisislawatts
Last active December 17, 2015 22:49
Show Gist options
  • Save thisislawatts/5684459 to your computer and use it in GitHub Desktop.
Save thisislawatts/5684459 to your computer and use it in GitHub Desktop.
Big Cartel Shipping Tasked with transferring a spreadsheet into Product Shipping Costs, I whipped these up to run in the console to auto populate the field
/* Fabric Shipping Costs */
// Wallpaper - Shipping Defaults
var arr = [{
"country" : "Guernsey",
"shipping_alone": 0,
"with_others" : 0
},
{
"country" : "Isle of Man",
"shipping_alone": 0,
"with_others" : 0
},
{
"country" : "Jersey",
"shipping_alone": 0,
"with_others" : 0
},
{
"country" : "United Kingdom",
"shipping_alone": 0,
"with_others" : 0
},
{
"country" : "Ireland",
"shipping_alone": 15,
"with_others" : 0
},
{
"country" : "Belgium",
"shipping_alone": 15,
"with_others" : 0
},
{
"country" : "Luxembourg",
"shipping_alone": 15,
"with_others" : 0
},
{
"country" : "Germany",
"shipping_alone": 15,
"with_others" : 0
},
{
"country" : "Monaco",
"shipping_alone": 15,
"with_others" : 0
},
{
"country" : "Austria",
"shipping_alone": 15,
"with_others" : 0
},
{
"country" : "Czech Republic",
"shipping_alone": 15,
"with_others" : 0
},
{
"country" : "Denmark",
"shipping_alone": 15,
"with_others" : 0
},
{
"country" : "Faroe Islands",
"shipping_alone": 15,
"with_others" : 0
},
{
"country" : "Greece",
"shipping_alone": 15,
"with_others" : 0
},
{
"country" : "Greenland",
"shipping_alone": 15,
"with_others" : 0
},
{
"country" : "Italy",
"shipping_alone": 15,
"with_others" : 0
},
{
"country" : "Vatican City State",
"shipping_alone": 15,
"with_others" : 0
},
{
"country" : "Cambodia",
"shipping_alone": 25,
"with_others" : 5
},
{
"country" : "East Timor",
"shipping_alone": 25,
"with_others" : 5
},
{
"country" : "Indonesia",
"shipping_alone": 25,
"with_others" : 5
},
{
"country" : "Laos",
"shipping_alone": 25,
"with_others" : 5
},
{
"country" : "Macau",
"shipping_alone": 25,
"with_others" : 5
},
{
"country" : "Malaysia",
"shipping_alone": 25,
"with_others" : 5
},
{
"country" : "Mexico",
"shipping_alone": 25,
"with_others" : 5
},
{
"country" : "Philippines",
"shipping_alone": 25,
"with_others" : 5
},
{
"country" : "Singapore",
"shipping_alone": 25,
"with_others" : 5
},
{
"country" : "South Korea",
"shipping_alone": 25,
"with_others" : 5
},
{
"country" : "Thailand",
"shipping_alone": 25,
"with_others" : 5
},
{
"country" : "Viet Nam",
"shipping_alone": 25,
"with_others" : 5
},
{
"country" : "Algeria",
"shipping_alone": 30,
"with_others" : 5
},
{
"country" : "Bahrain",
"shipping_alone": 30,
"with_others" : 5
},
{
"country" : "Bangladesh",
"shipping_alone": 30,
"with_others" : 5
},
{
"country" : "Bhutan",
"shipping_alone": 30,
"with_others" : 5
},
{
"country" : "Egypt",
"shipping_alone": 30,
"with_others" : 5
},
{
"country" : "India",
"shipping_alone": 30,
"with_others" : 5
},
{
"country" : "Iraq",
"shipping_alone": 30,
"with_others" : 5
},
{
"country" : "Israel",
"shipping_alone": 30,
"with_others" : 5
},
{
"country" : "Jordan",
"shipping_alone": 30,
"with_others" : 5
},
{
"country" : "Kuwait",
"shipping_alone": 30,
"with_others" : 5
},
{
"country" : "Lebanon",
"shipping_alone": 30,
"with_others" : 5
},
{
"country" : "Libya",
"shipping_alone": 30,
"with_others" : 5
},
{
"country" : "Morocco",
"shipping_alone": 30,
"with_others" : 5
},
{
"country" : "Myanmar",
"shipping_alone": 30,
"with_others" : 5
},
{
"country" : "Nepal",
"shipping_alone": 30,
"with_others" : 5
},
{
"country" : "Oman",
"shipping_alone": 30,
"with_others" : 5
},
{
"country" : "Pakistan",
"shipping_alone": 30,
"with_others" : 5
},
{
"country" : "Palestine",
"shipping_alone": 30,
"with_others" : 5
},
{
"country" : "Qatar",
"shipping_alone": 30,
"with_others" : 5
},
{
"country" : "Saudi Arabia",
"shipping_alone": 30,
"with_others" : 5
},
{
"country" : "Sri Lanka",
"shipping_alone": 30,
"with_others" : 5
},
{
"country" : "Syria",
"shipping_alone": 30,
"with_others" : 5
},
{
"country" : "Tunisia",
"shipping_alone": 30,
"with_others" : 5
},
{
"country" : "United Arab Emirates",
"shipping_alone": 30,
"with_others" : 5
},
{
"country" : "Yemen",
"shipping_alone": 30,
"with_others" : 5
},
{
"country" : "Anguilla",
"shipping_alone": 40,
"with_others" : 8
},
{
"country" : "Antigua And Barbuda",
"shipping_alone": 40,
"with_others" : 8
},
{
"country" : "Aruba",
"shipping_alone": 40,
"with_others" : 8
},
{
"country" : "Bahamas",
"shipping_alone": 40,
"with_others" : 8
},
{
"country" : "Barbados",
"shipping_alone": 40,
"with_others" : 8
},
{
"country" : "Belize",
"shipping_alone": 40,
"with_others" : 8
},
{
"country" : "Bermuda",
"shipping_alone": 40,
"with_others" : 8
},
{
"country" : "Bolivia",
"shipping_alone": 40,
"with_others" : 8
},
{
"country" : "British Virgin Islands",
"shipping_alone": 40,
"with_others" : 8
},
{
"country" : "Cayman Islands",
"shipping_alone": 40,
"with_others" : 8
},
{
"country" : "Chile",
"shipping_alone": 40,
"with_others" : 8
},
{
"country" : "Colombia",
"shipping_alone": 40,
"with_others" : 8
},
{
"country" : "Costa Rica",
"shipping_alone": 40,
"with_others" : 8
},
{
"country" : "Dominica",
"shipping_alone": 40,
"with_others" : 8
},
{
"country" : "Dominican Republic",
"shipping_alone": 40,
"with_others" : 8
},
{
"country" : "Ecuador",
"shipping_alone": 40,
"with_others" : 8
},
{
"country" : "El Salvador",
"shipping_alone": 40,
"with_others" : 8
},
{
"country" : "French Guiana",
"shipping_alone": 40,
"with_others" : 8
},
{
"country" : "Grenada",
"shipping_alone": 40,
"with_others" : 8
},
{
"country" : "Guadeloupe",
"shipping_alone": 40,
"with_others" : 8
},
{
"country" : "Guatemala",
"shipping_alone": 40,
"with_others" : 8
},
{
"country" : "Guyana",
"shipping_alone": 40,
"with_others" : 8
},
{
"country" : "Haiti",
"shipping_alone": 40,
"with_others" : 8
},
{
"country" : "Honduras",
"shipping_alone": 40,
"with_others" : 8
},
{
"country" : "Jamaica",
"shipping_alone": 40,
"with_others" : 8
},
{
"country" : "Martinique",
"shipping_alone": 40,
"with_others" : 8
},
{
"country" : "Montserrat",
"shipping_alone": 40,
"with_others" : 8
},
{
"country" : "Netherlands Antilles",
"shipping_alone": 40,
"with_others" : 8
},
{
"country" : "Nicaragua",
"shipping_alone": 40,
"with_others" : 8
},
{
"country" : "Panama",
"shipping_alone": 40,
"with_others" : 8
},
{
"country" : "Paraguay",
"shipping_alone": 40,
"with_others" : 8
},
{
"country" : "Peru",
"shipping_alone": 40,
"with_others" : 8
},
{
"country" : "Saint Kitts and Nevis",
"shipping_alone": 40,
"with_others" : 8
},
{
"country" : "Saint Lucia",
"shipping_alone": 40,
"with_others" : 8
},
{
"country" : "Saint Vincent and The Grenadines",
"shipping_alone": 40,
"with_others" : 8
},
{
"country" : "Trinidad and Tobago",
"shipping_alone": 40,
"with_others" : 8
},
{
"country" : "Turks and Caicos Islands",
"shipping_alone": 40,
"with_others" : 8
},
{
"country" : "Uruguay",
"shipping_alone": 40,
"with_others" : 8
},
{
"country" : "Virgin Islands (US)",
"shipping_alone": 40,
"with_others" : 8
},
{
"country" : "Venezuela",
"shipping_alone": 40,
"with_others" : 8
},
{
"country" : "Afghanistan",
"shipping_alone": 40,
"with_others" : 8
},
{
"country" : "American Samoa",
"shipping_alone": 40,
"with_others" : 8
},
{
"country" : "Angola",
"shipping_alone": 40,
"with_others" : 8
},
{
"country" : "Armenia",
"shipping_alone": 40,
"with_others" : 8
},
{
"country" : "Azerbaijan",
"shipping_alone": 40,
"with_others" : 8
},
{
"country" : "Benin",
"shipping_alone": 40,
"with_others" : 8
},
{
"country" : "Botswana",
"shipping_alone": 40,
"with_others" : 8
},
{
"country" : "Burkina Faso",
"shipping_alone": 40,
"with_others" : 8
},
{
"country" : "Burundi",
"shipping_alone": 40,
"with_others" : 8
},
{
"country" : "Cameroon",
"shipping_alone": 40,
"with_others" : 8
},
{
"country" : "Cape Verde",
"shipping_alone": 40,
"with_others" : 8
},
{
"country" : "Central African Republic",
"shipping_alone": 40,
"with_others" : 8
},
{
"country" : "Chad",
"shipping_alone": 40,
"with_others" : 8
},
{
"country" : "Congo",
"shipping_alone": 40,
"with_others" : 8
},
{
"country" : "Cook Islands",
"shipping_alone": 40,
"with_others" : 8
},
{
"country" : "Cote D'Ivoire (Ivory Coast)",
"shipping_alone": 40,
"with_others" : 8
},
{
"country" : "Democratic Republic of the Congo",
"shipping_alone": 40,
"with_others" : 8
},
{
"country" : "Equatorial Guinea",
"shipping_alone": 40,
"with_others" : 8
},
{
"country" : "Eritrea",
"shipping_alone": 40,
"with_others" : 8
},
{
"country" : "Ethiopia",
"shipping_alone": 40,
"with_others" : 8
},
{
"country" : "Fiji",
"shipping_alone": 40,
"with_others" : 8
},
{
"country" : "French Polynesia",
"shipping_alone": 40,
"with_others" : 8
},
{
"country" : "Gabon",
"shipping_alone": 40,
"with_others" : 8
},
{
"country" : "Gambia",
"shipping_alone": 40,
"with_others" : 8
},
{
"country" : "Georgia",
"shipping_alone": 40,
"with_others" : 8
},
{
"country" : "Ghana",
"shipping_alone": 40,
"with_others" : 8
},
{
"country" : "Guam",
"shipping_alone": 40,
"with_others" : 8
},
{
"country" : "Guinea",
"shipping_alone": 40,
"with_others" : 8
},
{
"country" : "Guinea-Bissau",
"shipping_alone": 40,
"with_others" : 8
},
{
"country" : "Kazakhstan",
"shipping_alone": 40,
"with_others" : 8
},
{
"country" : "Kenya",
"shipping_alone": 40,
"with_others" : 8
},
{
"country" : "Kiribati",
"shipping_alone": 40,
"with_others" : 8
},
{
"country" : "Kyrgyzstan (Kyrgyz Republic)",
"shipping_alone": 40,
"with_others" : 8
},
{
"country" : "Lesotho",
"shipping_alone": 40,
"with_others" : 8
},
{
"country" : "Liberia",
"shipping_alone": 40,
"with_others" : 8
},
{
"country" : "Madagascar",
"shipping_alone": 40,
"with_others" : 8
},
{
"country" : "Malawi",
"shipping_alone": 40,
"with_others" : 8
},
{
"country" : "Maldives",
"shipping_alone": 40,
"with_others" : 8
},
{
"country" : "Mali",
"shipping_alone": 40,
"with_others" : 8
},
{
"country" : "Marshall Islands",
"shipping_alone": 40,
"with_others" : 8
},
{
"country" : "Mauritania",
"shipping_alone": 40,
"with_others" : 8
},
{
"country" : "Mauritius",
"shipping_alone": 40,
"with_others" : 8
},
{
"country" : "Micronesia",
"shipping_alone": 40,
"with_others" : 8
},
{
"country" : "Mongolia",
"shipping_alone": 40,
"with_others" : 8
},
{
"country" : "Mozambique",
"shipping_alone": 40,
"with_others" : 8
},
{
"country" : "Namibia",
"shipping_alone": 40,
"with_others" : 8
},
{
"country" : "Nauru",
"shipping_alone": 40,
"with_others" : 8
},
{
"country" : "New Caledonia",
"shipping_alone": 40,
"with_others" : 8
},
{
"country" : "Niger",
"shipping_alone": 40,
"with_others" : 8
},
{
"country" : "Nigeria",
"shipping_alone": 40,
"with_others" : 8
},
{
"country" : "Niue",
"shipping_alone": 40,
"with_others" : 8
},
{
"country" : "Palau",
"shipping_alone": 40,
"with_others" : 8
},
{
"country" : "Papua New Guinea",
"shipping_alone": 40,
"with_others" : 8
},
{
"country" : "Reunion",
"shipping_alone": 40,
"with_others" : 8
},
{
"country" : "Rwanda",
"shipping_alone": 40,
"with_others" : 8
},
{
"country" : "Samoa",
"shipping_alone": 40,
"with_others" : 8
},
{
"country" : "Senegal",
"shipping_alone": 40,
"with_others" : 8
},
{
"country" : "Seychelles",
"shipping_alone": 40,
"with_others" : 8
},
{
"country" : "Sierra Leone",
"shipping_alone": 40,
"with_others" : 8
},
{
"country" : "Solomon Islands",
"shipping_alone": 40,
"with_others" : 8
},
{
"country" : "Somalia",
"shipping_alone": 40,
"with_others" : 8
},
{
"country" : "Swaziland",
"shipping_alone": 40,
"with_others" : 8
},
{
"country" : "Switzerland",
"shipping_alone": 40,
"with_others" : 8
},
{
"country" : "Tanzania",
"shipping_alone": 40,
"with_others" : 8
},
{
"country" : "Togo",
"shipping_alone": 40,
"with_others" : 8
},
{
"country" : "Tonga",
"shipping_alone": 40,
"with_others" : 8
},
{
"country" : "Turkmenistan",
"shipping_alone": 40,
"with_others" : 8
},
{
"country" : "Tuvalu",
"shipping_alone": 40,
"with_others" : 8
},
{
"country" : "Uganda",
"shipping_alone": 40,
"with_others" : 8
},
{
"country" : "Uzbekistan",
"shipping_alone": 40,
"with_others" : 8
},
{
"country" : "Vanuatu",
"shipping_alone": 40,
"with_others" : 8
},
{
"country" : "Wallis and Futuna Islands",
"shipping_alone": 40,
"with_others" : 8
},
{
"country" : "Zaire",
"shipping_alone": 40,
"with_others" : 8
},
{
"country" : "Zambia",
"shipping_alone": 40,
"with_others" : 8
},
{
"country" : "Zimbabwe",
"shipping_alone": 40,
"with_others" : 8
},
{
"country" : "Andorra",
"shipping_alone": 25,
"with_others" : 0
},
{
"country" : "Portugal",
"shipping_alone": 25,
"with_others" : 0
},
{
"country" : "Bulgaria",
"shipping_alone": 25,
"with_others" : 0
},
{
"country" : "Cyprus",
"shipping_alone": 25,
"with_others" : 0
},
{
"country" : "Estonia",
"shipping_alone": 25,
"with_others" : 0
},
{
"country" : "Hungary",
"shipping_alone": 25,
"with_others" : 0
},
{
"country" : "Latvia",
"shipping_alone": 25,
"with_others" : 0
},
{
"country" : "Lithuania",
"shipping_alone": 25,
"with_others" : 0
},
{
"country" : "Malta",
"shipping_alone": 25,
"with_others" : 0
},
{
"country" : "Romania",
"shipping_alone": 25,
"with_others" : 0
},
{
"country" : "Slovakia (Slovak Republic)",
"shipping_alone": 25,
"with_others" : 0
},
{
"country" : "Slovenia",
"shipping_alone": 25,
"with_others" : 0
},
{
"country" : "Gibraltar",
"shipping_alone": 25,
"with_others" : 0
},
{
"country" : "Iceland",
"shipping_alone": 25,
"with_others" : 0
},
{
"country" : "Liechtenstein",
"shipping_alone": 25,
"with_others" : 0
},
{
"country" : "Albania",
"shipping_alone": 25,
"with_others" : 5
},
{
"country" : "Bosnia and Herzegovina",
"shipping_alone": 25,
"with_others" : 5
},
{
"country" : "Croatia (Hrvatska)",
"shipping_alone": 25,
"with_others" : 5
},
{
"country" : "Macedonia",
"shipping_alone": 25,
"with_others" : 5
},
{
"country" : "Moldova",
"shipping_alone": 25,
"with_others" : 5
},
{
"country" : "Montenegro",
"shipping_alone": 25,
"with_others" : 5
},
{
"country" : "Serbia",
"shipping_alone": 25,
"with_others" : 5
},
{
"country" : "Turkey",
"shipping_alone": 25,
"with_others" : 5
}];
var index = 0;
function addShipping() {
var item = arr[index];
jQuery('#new_shipping_country option').each(function () {
var $el = $(this);
if ($el.text() == item.country) {
$el.attr('selected', 'selected');
jQuery('#new_shipping_amount_1').val(item.shipping_alone); jQuery('#new_shipping_amount_2').val(item.with_others);jQuery('#product_shipping .addbutton').trigger('click');
}
});
index++;
if (index < arr.length) {
setTimeout( addShipping, 1000);
}
}
(function($) {
$('#product_default_price').val('59');$('#default_load_shipping_list').trigger('click');
setTimeout(function() {
$('#btn_save').trigger('click');
}, 4000);
})(jQuery)
// Wallpaper - Shipping Defaults
var arr = [
{
"country" : "Guernsey",
"shipping_alone" : 0,
"with_others" : 0
},
{
"country" : "Isle of Man",
"shipping_alone" : 0,
"with_others" : 0
},
{
"country" : "Jersey",
"shipping_alone" : 0,
"with_others" : 0
},
{
"country" : "United Kingdom",
"shipping_alone" : 0,
"with_others" : 0
},
{
"country" : "Ireland",
"shipping_alone" : 15,
"with_others" : 0
},
{
"country" : "Belgium",
"shipping_alone" : 15,
"with_others" : 0
},
{
"country" : "Luxembourg",
"shipping_alone" : 15,
"with_others" : 0
},
{
"country" : "Germany",
"shipping_alone" : 15,
"with_others" : 0
},
{
"country" : "Monaco",
"shipping_alone" : 15,
"with_others" : 0
},
{
"country" : "Austria",
"shipping_alone" : 15,
"with_others" : 0
},
{
"country" : "Czech Republic",
"shipping_alone" : 15,
"with_others" : 0
},
{
"country" : "Denmark",
"shipping_alone" : 15,
"with_others" : 0
},
{
"country" : "Faroe Islands",
"shipping_alone" : 15,
"with_others" : 0
},
{
"country" : "Greece",
"shipping_alone" : 15,
"with_others" : 0
},
{
"country" : "Greenland",
"shipping_alone" : 15,
"with_others" : 0
},
{
"country" : "Italy",
"shipping_alone" : 15,
"with_others" : 0
},
{
"country" : "Vatican City State",
"shipping_alone" : 15,
"with_others" : 0
},
{
"country" : "Cambodia",
"shipping_alone" : 25,
"with_others" : 5
},
{
"country" : "East Timor",
"shipping_alone" : 25,
"with_others" : 5
},
{
"country" : "Indonesia",
"shipping_alone" : 25,
"with_others" : 5
},
{
"country" : "Laos",
"shipping_alone" : 25,
"with_others" : 5
},
{
"country" : "Macau",
"shipping_alone" : 25,
"with_others" : 5
},
{
"country" : "Malaysia",
"shipping_alone" : 25,
"with_others" : 5
},
{
"country" : "Mexico",
"shipping_alone" : 25,
"with_others" : 5
},
{
"country" : "Philippines",
"shipping_alone" : 25,
"with_others" : 5
},
{
"country" : "Singapore",
"shipping_alone" : 25,
"with_others" : 5
},
{
"country" : "South Korea",
"shipping_alone" : 25,
"with_others" : 5
},
{
"country" : "Thailand",
"shipping_alone" : 25,
"with_others" : 5
},
{
"country" : "Viet Nam",
"shipping_alone" : 25,
"with_others" : 5
},
{
"country" : "Algeria",
"shipping_alone" : 30,
"with_others" : 5
},
{
"country" : "Bahrain",
"shipping_alone" : 30,
"with_others" : 5
},
{
"country" : "Bangladesh",
"shipping_alone" : 30,
"with_others" : 5
},
{
"country" : "Bhutan",
"shipping_alone" : 30,
"with_others" : 5
},
{
"country" : "Egypt",
"shipping_alone" : 30,
"with_others" : 5
},
{
"country" : "India",
"shipping_alone" : 30,
"with_others" : 5
},
{
"country" : "Iraq",
"shipping_alone" : 30,
"with_others" : 5
},
{
"country" : "Israel",
"shipping_alone" : 30,
"with_others" : 5
},
{
"country" : "Jordan",
"shipping_alone" : 30,
"with_others" : 5
},
{
"country" : "Kuwait",
"shipping_alone" : 30,
"with_others" : 5
},
{
"country" : "Lebanon",
"shipping_alone" : 30,
"with_others" : 5
},
{
"country" : "Libya",
"shipping_alone" : 30,
"with_others" : 5
},
{
"country" : "Morocco",
"shipping_alone" : 30,
"with_others" : 5
},
{
"country" : "Myanmar",
"shipping_alone" : 30,
"with_others" : 5
},
{
"country" : "Nepal",
"shipping_alone" : 30,
"with_others" : 5
},
{
"country" : "Oman",
"shipping_alone" : 30,
"with_others" : 5
},
{
"country" : "Pakistan",
"shipping_alone" : 30,
"with_others" : 5
},
{
"country" : "Palestine",
"shipping_alone" : 30,
"with_others" : 5
},
{
"country" : "Qatar",
"shipping_alone" : 30,
"with_others" : 5
},
{
"country" : "Saudi Arabia",
"shipping_alone" : 30,
"with_others" : 5
},
{
"country" : "Sri Lanka",
"shipping_alone" : 30,
"with_others" : 5
},
{
"country" : "Syria",
"shipping_alone" : 30,
"with_others" : 5
},
{
"country" : "Tunisia",
"shipping_alone" : 30,
"with_others" : 5
},
{
"country" : "United Arab Emirates",
"shipping_alone" : 30,
"with_others" : 5
},
{
"country" : "Yemen",
"shipping_alone" : 30,
"with_others" : 5
},
{
"country" : "Anguilla",
"shipping_alone" : 40,
"with_others" : 8
},
{
"country" : "Antigua And Barbuda",
"shipping_alone" : 40,
"with_others" : 8
},
{
"country" : "Aruba",
"shipping_alone" : 40,
"with_others" : 8
},
{
"country" : "Bahamas",
"shipping_alone" : 40,
"with_others" : 8
},
{
"country" : "Barbados",
"shipping_alone" : 40,
"with_others" : 8
},
{
"country" : "Belize",
"shipping_alone" : 40,
"with_others" : 8
},
{
"country" : "Bermuda",
"shipping_alone" : 40,
"with_others" : 8
},
{
"country" : "Bolivia",
"shipping_alone" : 40,
"with_others" : 8
},
{
"country" : "British Virgin Islands",
"shipping_alone" : 40,
"with_others" : 8
},
{
"country" : "Cayman Islands",
"shipping_alone" : 40,
"with_others" : 8
},
{
"country" : "Chile",
"shipping_alone" : 40,
"with_others" : 8
},
{
"country" : "Colombia",
"shipping_alone" : 40,
"with_others" : 8
},
{
"country" : "Costa Rica",
"shipping_alone" : 40,
"with_others" : 8
},
{
"country" : "Dominica",
"shipping_alone" : 40,
"with_others" : 8
},
{
"country" : "Dominican Republic",
"shipping_alone" : 40,
"with_others" : 8
},
{
"country" : "Ecuador",
"shipping_alone" : 40,
"with_others" : 8
},
{
"country" : "El Salvador",
"shipping_alone" : 40,
"with_others" : 8
},
{
"country" : "French Guiana",
"shipping_alone" : 40,
"with_others" : 8
},
{
"country" : "Grenada",
"shipping_alone" : 40,
"with_others" : 8
},
{
"country" : "Guadeloupe",
"shipping_alone" : 40,
"with_others" : 8
},
{
"country" : "Guatemala",
"shipping_alone" : 40,
"with_others" : 8
},
{
"country" : "Guyana",
"shipping_alone" : 40,
"with_others" : 8
},
{
"country" : "Haiti",
"shipping_alone" : 40,
"with_others" : 8
},
{
"country" : "Honduras",
"shipping_alone" : 40,
"with_others" : 8
},
{
"country" : "Jamaica",
"shipping_alone" : 40,
"with_others" : 8
},
{
"country" : "Martinique",
"shipping_alone" : 40,
"with_others" : 8
},
{
"country" : "Montserrat",
"shipping_alone" : 40,
"with_others" : 8
},
{
"country" : "Netherlands Antilles",
"shipping_alone" : 40,
"with_others" : 8
},
{
"country" : "Nicaragua",
"shipping_alone" : 40,
"with_others" : 8
},
{
"country" : "Panama",
"shipping_alone" : 40,
"with_others" : 8
},
{
"country" : "Paraguay",
"shipping_alone" : 40,
"with_others" : 8
},
{
"country" : "Peru",
"shipping_alone" : 40,
"with_others" : 8
},
{
"country" : "Saint Kitts and Nevis",
"shipping_alone" : 40,
"with_others" : 8
},
{
"country" : "Saint Lucia",
"shipping_alone" : 40,
"with_others" : 8
},
{
"country" : "Saint Vincent and The Grenadines",
"shipping_alone" : 40,
"with_others" : 8
},
{
"country" : "Trinidad and Tobago",
"shipping_alone" : 40,
"with_others" : 8
},
{
"country" : "Turks and Caicos Islands",
"shipping_alone" : 40,
"with_others" : 8
},
{
"country" : "Uruguay",
"shipping_alone" : 40,
"with_others" : 8
},
{
"country" : "Virgin Islands (US)",
"shipping_alone" : 40,
"with_others" : 8
},
{
"country" : "Venezuela",
"shipping_alone" : 40,
"with_others" : 8
},
{
"country" : "Afghanistan",
"shipping_alone" : 40,
"with_others" : 8
},
{
"country" : "American Samoa",
"shipping_alone" : 40,
"with_others" : 8
},
{
"country" : "Angola",
"shipping_alone" : 40,
"with_others" : 8
},
{
"country" : "Armenia",
"shipping_alone" : 40,
"with_others" : 8
},
{
"country" : "Azerbaijan",
"shipping_alone" : 40,
"with_others" : 8
},
{
"country" : "Benin",
"shipping_alone" : 40,
"with_others" : 8
},
{
"country" : "Botswana",
"shipping_alone" : 40,
"with_others" : 8
},
{
"country" : "Burkina Faso",
"shipping_alone" : 40,
"with_others" : 8
},
{
"country" : "Burundi",
"shipping_alone" : 40,
"with_others" : 8
},
{
"country" : "Cameroon",
"shipping_alone" : 40,
"with_others" : 8
},
{
"country" : "Cape Verde",
"shipping_alone" : 40,
"with_others" : 8
},
{
"country" : "Central African Republic",
"shipping_alone" : 40,
"with_others" : 8
},
{
"country" : "Chad",
"shipping_alone" : 40,
"with_others" : 8
},
{
"country" : "Congo",
"shipping_alone" : 40,
"with_others" : 8
},
{
"country" : "Cook Islands",
"shipping_alone" : 40,
"with_others" : 8
},
{
"country" : "Cote D'Ivoire (Ivory Coast)",
"shipping_alone" : 40,
"with_others" : 8
},
{
"country" : "Democratic Republic of the Congo",
"shipping_alone" : 40,
"with_others" : 8
},
{
"country" : "Equatorial Guinea",
"shipping_alone" : 40,
"with_others" : 8
},
{
"country" : "Eritrea",
"shipping_alone" : 40,
"with_others" : 8
},
{
"country" : "Ethiopia",
"shipping_alone" : 40,
"with_others" : 8
},
{
"country" : "Fiji",
"shipping_alone" : 40,
"with_others" : 8
},
{
"country" : "French Polynesia",
"shipping_alone" : 40,
"with_others" : 8
},
{
"country" : "Gabon",
"shipping_alone" : 40,
"with_others" : 8
},
{
"country" : "Gambia",
"shipping_alone" : 40,
"with_others" : 8
},
{
"country" : "Georgia",
"shipping_alone" : 40,
"with_others" : 8
},
{
"country" : "Ghana",
"shipping_alone" : 40,
"with_others" : 8
},
{
"country" : "Guam",
"shipping_alone" : 40,
"with_others" : 8
},
{
"country" : "Guinea",
"shipping_alone" : 40,
"with_others" : 8
},
{
"country" : "Guinea-Bissau",
"shipping_alone" : 40,
"with_others" : 8
},
{
"country" : "Kazakhstan",
"shipping_alone" : 40,
"with_others" : 8
},
{
"country" : "Kenya",
"shipping_alone" : 40,
"with_others" : 8
},
{
"country" : "Kiribati",
"shipping_alone" : 40,
"with_others" : 8
},
{
"country" : "Kyrgyzstan (Kyrgyz Republic)",
"shipping_alone" : 40,
"with_others" : 8
},
{
"country" : "Lesotho",
"shipping_alone" : 40,
"with_others" : 8
},
{
"country" : "Liberia",
"shipping_alone" : 40,
"with_others" : 8
},
{
"country" : "Madagascar",
"shipping_alone" : 40,
"with_others" : 8
},
{
"country" : "Malawi",
"shipping_alone" : 40,
"with_others" : 8
},
{
"country" : "Maldives",
"shipping_alone" : 40,
"with_others" : 8
},
{
"country" : "Mali",
"shipping_alone" : 40,
"with_others" : 8
},
{
"country" : "Marshall Islands",
"shipping_alone" : 40,
"with_others" : 8
},
{
"country" : "Mauritania",
"shipping_alone" : 40,
"with_others" : 8
},
{
"country" : "Mauritius",
"shipping_alone" : 40,
"with_others" : 8
},
{
"country" : "Micronesia",
"shipping_alone" : 40,
"with_others" : 8
},
{
"country" : "Mongolia",
"shipping_alone" : 40,
"with_others" : 8
},
{
"country" : "Mozambique",
"shipping_alone" : 40,
"with_others" : 8
},
{
"country" : "Namibia",
"shipping_alone" : 40,
"with_others" : 8
},
{
"country" : "Nauru",
"shipping_alone" : 40,
"with_others" : 8
},
{
"country" : "New Caledonia",
"shipping_alone" : 40,
"with_others" : 8
},
{
"country" : "Niger",
"shipping_alone" : 40,
"with_others" : 8
},
{
"country" : "Nigeria",
"shipping_alone" : 40,
"with_others" : 8
},
{
"country" : "Niue",
"shipping_alone" : 40,
"with_others" : 8
},
{
"country" : "Palau",
"shipping_alone" : 40,
"with_others" : 8
},
{
"country" : "Papua New Guinea",
"shipping_alone" : 40,
"with_others" : 8
},
{
"country" : "Reunion",
"shipping_alone" : 40,
"with_others" : 8
},
{
"country" : "Rwanda",
"shipping_alone" : 40,
"with_others" : 8
},
{
"country" : "Samoa",
"shipping_alone" : 40,
"with_others" : 8
},
{
"country" : "Senegal",
"shipping_alone" : 40,
"with_others" : 8
},
{
"country" : "Seychelles",
"shipping_alone" : 40,
"with_others" : 8
},
{
"country" : "Sierra Leone",
"shipping_alone" : 40,
"with_others" : 8
},
{
"country" : "Solomon Islands",
"shipping_alone" : 40,
"with_others" : 8
},
{
"country" : "Somalia",
"shipping_alone" : 40,
"with_others" : 8
},
{
"country" : "Swaziland",
"shipping_alone" : 40,
"with_others" : 8
},
{
"country" : "Switzerland",
"shipping_alone" : 40,
"with_others" : 8
},
{
"country" : "Tanzania",
"shipping_alone" : 40,
"with_others" : 8
},
{
"country" : "Togo",
"shipping_alone" : 40,
"with_others" : 8
},
{
"country" : "Tonga",
"shipping_alone" : 40,
"with_others" : 8
},
{
"country" : "Turkmenistan",
"shipping_alone" : 40,
"with_others" : 8
},
{
"country" : "Tuvalu",
"shipping_alone" : 40,
"with_others" : 8
},
{
"country" : "Uganda",
"shipping_alone" : 40,
"with_others" : 8
},
{
"country" : "Uzbekistan",
"shipping_alone" : 40,
"with_others" : 8
},
{
"country" : "Vanuatu",
"shipping_alone" : 40,
"with_others" : 8
},
{
"country" : "Wallis and Futuna Islands",
"shipping_alone" : 40,
"with_others" : 8
},
{
"country" : "Zaire",
"shipping_alone" : 40,
"with_others" : 8
},
{
"country" : "Zambia",
"shipping_alone" : 40,
"with_others" : 8
},
{
"country" : "Zimbabwe",
"shipping_alone" : 40,
"with_others" : 8
},
{
"country" : "Andorra",
"shipping_alone" : 25,
"with_others" : 0
},
{
"country" : "Portugal",
"shipping_alone" : 25,
"with_others" : 0
},
{
"country" : "Bulgaria",
"shipping_alone" : 25,
"with_others" : 0
},
{
"country" : "Cyprus",
"shipping_alone" : 25,
"with_others" : 0
},
{
"country" : "Estonia",
"shipping_alone" : 25,
"with_others" : 0
},
{
"country" : "Hungary",
"shipping_alone" : 25,
"with_others" : 0
},
{
"country" : "Latvia",
"shipping_alone" : 25,
"with_others" : 0
},
{
"country" : "Lithuania",
"shipping_alone" : 25,
"with_others" : 0
},
{
"country" : "Malta",
"shipping_alone" : 25,
"with_others" : 0
},
{
"country" : "Romania",
"shipping_alone" : 25,
"with_others" : 0
},
{
"country" : "Slovakia (Slovak Republic)",
"shipping_alone" : 25,
"with_others" : 0
},
{
"country" : "Slovenia",
"shipping_alone" : 25,
"with_others" : 0
},
{
"country" : "Gibraltar",
"shipping_alone" : 25,
"with_others" : 0
},
{
"country" : "Iceland",
"shipping_alone" : 25,
"with_others" : 0
},
{
"country" : "Liechtenstein",
"shipping_alone" : 25,
"with_others" : 0
},
{
"country" : "Albania",
"shipping_alone" : 25,
"with_others" : 5
},
{
"country" : "Bosnia and Herzegovina",
"shipping_alone" : 25,
"with_others" : 5
},
{
"country" : "Croatia (Hrvatska)",
"shipping_alone" : 25,
"with_others" : 5
},
{
"country" : "Macedonia",
"shipping_alone" : 25,
"with_others" : 5
},
{
"country" : "Moldova",
"shipping_alone" : 25,
"with_others" : 5
},
{
"country" : "Montenegro",
"shipping_alone" : 25,
"with_others" : 5
},
{
"country" : "Serbia",
"shipping_alone" : 25,
"with_others" : 5
},
{
"country" : "Turkey",
"shipping_alone" : 25,
"with_others" : 5
}
];
var index = 0;
function addShipping() {
var item = arr[index];
jQuery('#new_shipping_country option').each(function () {
var $el = $(this);
if ($el.text() == item.country) {
$el.attr('selected', 'selected');
jQuery('#new_shipping_amount_1').val(item.shipping_alone); jQuery('#new_shipping_amount_2').val(item.with_others);jQuery('#product_shipping .addbutton').trigger('click');
}
});
index++;
if (index < arr.length) {
setTimeout( addShipping, 1000);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment