This file contains 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
# This file contains the information needed for Shopify to authenticate | |
# requests and edit/update your remote theme files. | |
# | |
# 1. Set up a private app (https://help.shopify.com/api/guides/api-credentials#generate-private-app-credentials) | |
# with "Read and write" permissions for "Theme templates and theme assets". | |
# 2. Replace the required variables for each environment below. | |
# | |
# password, theme_id, and store variables are required. | |
# | |
# For more information on this config file: |
This file contains 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
{% comment %} | |
Source: https://gist.github.com/davelowensohn/98b386c58ba09c00fa552e00a47d93ab | |
Forked from: https://gist.github.com/carolineschnapp/9122054 | |
If you are not on a collection page, do define which collection to use in the order form. | |
Use the following assign statement, replace 'your-collection-handle-here' with your collection handle. | |
{% assign collection = collections.your-collection-handle-here %} | |
Use the assign statement outside of this comment block at the top of your template. | |
{% endcomment %} | |
{% paginate collection.products by 100 %} |
This file contains 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
... | |
{% if product.collections[0].handle.size > 0 %} | |
{% assign canonical_url = shop.url | append: '/collections/' | append: product.collections[0].handle | append: '/products/' | append: product.handle %} | |
{% else %} | |
{% assign canonical_url = product.url | within: collection %} | |
{% endif %} | |
... |
This file contains 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
{% paginate collection.products by 32 %} | |
<div id="collection-description" class="desktop-12"> | |
<h1>{{ collection.title }}</h1> | |
{{ collection.description }} | |
</div> | |
{% if settings.filters %} | |
<div id="full-width-filter" class="desktop-12 tablet-6 mobile-3"> | |
{% include 'dropdown-filter' %} | |
</div> |
This file contains 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
{% if item.product.tags contains 'final-sale' %} | |
<div class="final-sale-warning">FINAL SALE</div> | |
{% endif %} |
This file contains 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
... | |
{% if template contains 'product' and product.collections.size > 0 %} | |
<link rel="canonical" href="{{ shop.url }}{{ product.collections.last.url }}/products/{{product.handle}}" /> | |
{% else %} | |
<link rel="canonical" href="{{ canonical_url }}" /> | |
{% endif %} | |
... |
This file contains 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
model(params){ | |
var allProds = this.store.findAll('product'), | |
brandsPromise = allProds.then(allProducts => { | |
var allBrands = allProducts.map( aProd => aProd.get('vendor')), | |
filteredBrandPromise = new Promise(function (resolve, reject){ | |
resolve( Array.from(new Set(allBrands)).sort()); | |
reject(); | |
}); | |
return filteredBrandPromise; | |
} |
This file contains 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
import Ember from 'ember'; | |
export default Ember.Component.extend({ | |
}); |
NewerOlder