Skip to content

Instantly share code, notes, and snippets.

@coryetzkorn
Forked from carolineschnapp/settings.html
Last active August 29, 2015 14:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save coryetzkorn/3549b3840ec16f507d6c to your computer and use it in GitHub Desktop.
Save coryetzkorn/3549b3840ec16f507d6c to your computer and use it in GitHub Desktop.
[
{
"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