-
-
Save coryetzkorn/3549b3840ec16f507d6c to your computer and use it in GitHub Desktop.
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
[ | |
{ | |
"name": "Money Options", | |
"settings": [ | |
{ | |
"type": "checkbox", | |
"id": "show_multiple_currencies", | |
"default": true, | |
"label": "Show currency selector?" | |
}, | |
{ | |
"type": "paragraph", | |
"content": "Although you will be able to display prices on your store front in different currencies, Shopify will still process orders in your shop's currency." | |
}, | |
{ | |
"type": "select", | |
"id": "currency_format", | |
"label": "Money format", | |
"options": [ | |
{ "value": "money_format", "label": "Without Currency, ex: $10.00"}, | |
{ "value": "money_with_currency_format", "label": "With Currency, ex: $10 CAD"} | |
] | |
}, | |
{ | |
"type": "text", | |
"id": "supported_currencies", | |
"label": "Currencies you wish to support", | |
"default": "CAD USD" | |
}, | |
{ | |
"type": "text", | |
"id": "default_currency", | |
"label": "Default currency", | |
"default": "CAD" | |
}, | |
{ | |
"type": "paragraph", | |
"content": "Separate your currency codes with a space. Use the ISO 4217 3-letter currency code. Visit http://www.xe.com/iso4217.php for a complete list of currency codes. Example: CAD USD." | |
}, | |
{ | |
"type": "paragraph", | |
"content": "* For this functionality to work in your shop, you are required to edit your money formats as per http://wiki.shopify.com/Do_Tell_Where_The_Money_Is" | |
} | |
] | |
} | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment