Skip to content

Instantly share code, notes, and snippets.

@cshold
cshold / settings.html
Created May 16, 2014 13:57
Shopify settings page structure
<!--
If you're using our theme_gem to upload your files, make sure you close your
input and br tags as if it were XHTML.
- eg. <br /> and <input type="text" />
More info on settings:
- http://docs.shopify.com/themes/theme-templates/settings
-->
<!-- Colors -->
@cshold
cshold / collection-sorting.liquid
Created May 15, 2014 13:43
Shopify Collection Sorting
<div class="form-horizontal">
<label for="sortBy">Sort by</label>
<select name="sortBy" id="sortBy">
<option value="manual">Featured</option>
<option value="best-selling">Best Selling</option>
<option value="title-ascending">Alphabetically, A-Z</option>
<option value="title-descending">Alphabetically, Z-A</option>
<option value="price-ascending">Price, low to high</option>
<option value="price-descending">Price, high to low</option>
<option value="created-descending">Date, new to old</option>