Skip to main content

Thank a volunteer. We use the proceeds from the store to send thank you gifts to the volunteers who make Wikipedia possible. @wikipediastore About us

Merchandise Giveaway ProgramWikiInstagramTwitterFacebookFAQPayment MethodsReturns & ExchangesProblem With Order?WeFeedbackShippingEmail UsUnsubscribeTerms of ServicePrivacy PolicyIBM Privacy Policy


























Thank a volunteer. We use the proceeds from the store to send thank you gifts to the volunteers who make Wikipedia possible.















@wikipediastore




Wikipedia store on Instagram






About us



Wikipedia volunteers are special. They hail from all across the globe, representing every professional and personal experience one can imagine. They donate tons of hours per year to writing and editing Wikipedia. Without them, we would not exist.


We can’t thank them enough - but we’re trying. That’s why we created the Merchandise Giveaway Program, amongst other projects. Through it, any Wikipedia user can nominate a Wikipedia contributor to receive a free gift in the mail.




We had a great time finding creative and sustainable merchandise for this program. When people started asking if they could buy our shirts, bags and pens, we thought - why not?


What goes around, comes around. We invite you to support the community with your purchase. Thank you for being a part of it!





















All content is available under the Creative Commons Attribution-ShareAlike 3.0 License unless otherwise noted.


Copyright © 2019 Wikipedia Store. Wikipedia® is a registered trademark of the Wikimedia Foundation.


See the Wikimedia Trademark Policy for more details.


WikiMedia Foundation



You are using an outdated browser. Please upgrade your browser or activate Google Chrome Frame to improve your experience.



function postViaIFrame()
// Create the iframe for the form and use it as the form's target
var frameName = "shopEmailFrame";
var $form = $("form#join-form");
if ($("iframe[name=" + frameName + "]").length == 0)
var $iframe = $('');
$form.attr("target", $iframe.attr("name"));
$form.after($iframe);

$form[0].submit();

$(document).ready(function()
$("#join-form input[type='submit']").bind("click", function()
if ($("form#join-form input[name='Email']").val() == "")
$("form#join-form input[name='Email']").addClass("error");
$("form#join-form #errorMessageContainerId").show();
return false;

else
postViaIFrame();
$("form#join-form").hide();
$("form#join-form").after("

Thank you for signing up!");
return false;

);
);





var currencySymbols =
AUD: "//cdn.shopify.com/s/files/1/0160/7500/t/18/assets/symbol_AUD.png?0",
CAD: "//cdn.shopify.com/s/files/1/0160/7500/t/18/assets/symbol_CAD.png?0",
CHF: "//cdn.shopify.com/s/files/1/0160/7500/t/18/assets/symbol_CHF.png?0",
CNY: "//cdn.shopify.com/s/files/1/0160/7500/t/18/assets/symbol_CNY.png?0",
DKK: "//cdn.shopify.com/s/files/1/0160/7500/t/18/assets/symbol_DKK.png?0",
EUR: "//cdn.shopify.com/s/files/1/0160/7500/t/18/assets/symbol_EUR.png?0",
GBP: "//cdn.shopify.com/s/files/1/0160/7500/t/18/assets/symbol_GBP.png?0",
HKD: "//cdn.shopify.com/s/files/1/0160/7500/t/18/assets/symbol_HKD.png?0",
JPY: "//cdn.shopify.com/s/files/1/0160/7500/t/18/assets/symbol_JPY.png?0",
NOK: "//cdn.shopify.com/s/files/1/0160/7500/t/18/assets/symbol_NOK.png?0",
NZD: "//cdn.shopify.com/s/files/1/0160/7500/t/18/assets/symbol_NZD.png?0",
RUB: "//cdn.shopify.com/s/files/1/0160/7500/t/18/assets/symbol_RUB.png?0",
SEK: "//cdn.shopify.com/s/files/1/0160/7500/t/18/assets/symbol_SEK.png?0",
SGD: "//cdn.shopify.com/s/files/1/0160/7500/t/18/assets/symbol_SGD.png?0",
TWD: "//cdn.shopify.com/s/files/1/0160/7500/t/18/assets/symbol_TWD.png?0",
USD: "//cdn.shopify.com/s/files/1/0160/7500/t/18/assets/symbol_USD.png?0"
;
console.log(currencySymbols);
Currency.format = 'money_with_currency_format';
var shopCurrency = 'USD';

/* Sometimes merchants change their shop currency, let's tell our JavaScript file */
Currency.moneyFormats[shopCurrency].money_with_currency_format = "$amount USD";
Currency.moneyFormats[shopCurrency].money_format = "$amount USD";

/* Default currency */
var defaultCurrency = 'USD';

/* Cookie currency */
var cookieCurrency = Currency.cookie.read();

/* Fix for customer account pages */
jQuery('span.money span.money').each(function()
jQuery(this).parents('span.money').removeClass('money');
);

/* Saving the current price */
jQuery('span.money').each(function()
jQuery(this).attr('data-currency-USD', jQuery(this).html());
);

// If there's no cookie.
if (cookieCurrency == null)
if (shopCurrency !== defaultCurrency)
Currency.convertAll(shopCurrency, defaultCurrency);

else
Currency.currentCurrency = defaultCurrency;


// If the cookie value does not correspond to any value in the currency dropdown.
else if (jQuery('[name=currencies]').size() && jQuery('[name=currencies] option[value=' + cookieCurrency + ']').size() === 0)
Currency.currentCurrency = shopCurrency;
Currency.cookie.write(shopCurrency);

else if (cookieCurrency === shopCurrency)
Currency.currentCurrency = shopCurrency;

else
Currency.convertAll(shopCurrency, cookieCurrency);


jQuery('[name=currencies]').val(Currency.currentCurrency).change(function()
var newCurrency = jQuery(this).val();

Currency.convertAll(Currency.currentCurrency, newCurrency);
jQuery('.selected-currency').text(Currency.currentCurrency);

jQuery('.currency-symbol').css('background-image', 'url("' + currencySymbols[newCurrency] + '")');

);

var original_selectCallback = window.selectCallback;
var selectCallback = function(variant, selector)
original_selectCallback(variant, selector);
Currency.convertAll(shopCurrency, jQuery('[name=currencies]').val());
$('.selected-currency').text(Currency.currentCurrency);
;

$('body').on('ajaxCart.afterCartLoad', function(cart)
Currency.convertAll(shopCurrency, jQuery('[name=currencies]').val());
$('.selected-currency').text(Currency.currentCurrency);
);
// initialize the height of drop-down menu
if( /Android|webOS|iPhone|iPad|iPod|BlackBerry/i.test(navigator.userAgent) )
$('.selectpicker').selectpicker('mobile');
else
$('.selectpicker').selectpicker(
size: 6,
mobile: false
);

$('.selected-currency').text(Currency.currentCurrency);

// add current currency flag for toggle button
$('.bootstrap-select').append('');
jQuery('.currency-symbol').css('background-image', 'url("' + currencySymbols[Currency.currentCurrency] + '")');

// add flag for each option
$(document).ready(function()
$('.dropdown-menu').children('li').each(function()
var symbolText = $(this).text();
$(this).children().css('background-image', 'url("' + currencySymbols[symbolText] + '")');
);
);

Popular posts from this blog

Wikipedia:Contact us Navigation menu Navigation menuLeave a Reply Cancel reply Post navigationRecent PostsRecent CommentsArchivesCategoriesMeta

Farafra Inhaltsverzeichnis Geschichte | Badr-Museum Farafra | Nationalpark Weiße Wüste (as-Sahra al-baida) | Literatur | Weblinks | Navigationsmenü27° 3′ N, 27° 58′ OCommons: Farafra

Tórshavn Kliima | Partnerstääden | Luke uk diar | Nawigatsjuun62° 1′ N, 6° 46′ W62° 1′ 0″ N, 6° 46′ 0″ WWMOTórshavn