-
-
Save carolineschnapp/773649 to your computer and use it in GitHub Desktop.
<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> |
@birdboho Use a max-width on the select element. See what I added to my snippet:
style="max-width: 100px"
Even better, use style="display: inline; width: auto;"
hello how can i remover or round up or down the amounts like from currency to the other i don't want the cents and pennies and all deicmals how can i remove that from all the currencies that are being displaied
hello, I installed your script and it works great, is there any way that I can place it at the top of my shops site, next to the cart icon? thanks for your help.
Great snippet.
Any ideas on including the currency's symbol next to the country code? I'm trying…
Help!
I followed the step by step guide from Shopify at the link below and while everything else works, the price for the product doesn't change from one currency to another, instead it only displays the default currency.
what could I have done wrong?
I am using Minimal Music Live theme.
I would be pleased to hear from anyone with suggestions on what/where I slipped up.
Thanks, Jem
Great snippet, for sure!
Now, how do I get it to work with ajaxify-cart-template.liquid in the Timber theme?
Many thanks.
Hi i need help!
I cant find where to put the currency picker code on the theme liquid! pls help!!!
Great snippet!
Can any one help? I want to ad flags to this??
It works for me. Thanks.
Hello,
Can you help me with the problem "Uncaught TypeError: jQuery.cookie is not a function at Object.write (jquery.currencies.min.js" ?
Great snippet but I have exactly the same issue as Jemmey above. Did anyone come up with a solution for her?
I'm using Debut.
Thanks
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 :)
hello - I have installed this but it does not look like yours - when I download the Gist and open it looks great but on my website the currency drop down menu is way to wide - its not neat and discrete - it goes the width of the page - how do I change this please?