Last active
August 21, 2019 13:17
-
-
Save carolineschnapp/773649 to your computer and use it in GitHub Desktop.
currency-picker.liquid
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<label class="currency-picker__wrapper"> | |
<span class="currency-picker__label">Pick a currency</span> | |
<select class="currency-picker" name="currencies" style="display: inline; width: auto; vertical-align: inherit;"> | |
{% assign codes = 'USD,EUR,GBP,CAD,ARS,AUD,BBD,BDT,BSD,BHD,BRL,BOB,BND,BGN,ILS,MMK,KYD,CLP,CNY,COP,CRC,HRK,CZK,DKK,DOP,XCD,EGP,XPF,FJD,GHS,GTQ,GYD,GEL,HKD,HUF,ISK,INR,IDR,NIS,JMD,JPY,JOD,KZT,KES,KWD,LVL,LTL,MXN,MYR,MUR,MDL,MAD,MNT,MZN,ANG,NZD,NGN,NOK,OMR,PKR,PYG,PEN,PHP,PLN,QAR,RON,RUB,SAR,RSD,SCR,SGD,SYP,ZAR,KRW,LKR,SEK,CHF,TWD,THB,TZS,TTD,TRY,UAH,AED,UYU,VEB,VND,ZMK' | split: ',' %} | |
{% assign supported_codes = settings.supported_currencies | split: ' ' %} | |
<option value="{{ shop.currency }}" selected="selected">{{ shop.currency }}</option> | |
{% for code in supported_codes %} | |
{% if code != shop.currency and codes contains code %} | |
<option value="{{ code }}">{{ code }}</option> | |
{% endif %} | |
{% endfor %} | |
</select> | |
</label> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This list is missing some currencies from https://raw.githubusercontent.com/carolineschnapp/currencies/master/jquery.currencies.min.js
TND, for example. I'd create a PR if this weren't a Gist :)