Last active
October 10, 2016 07:26
-
-
Save hsleonis/41c09446864fcefdb0db439108d20fd6 to your computer and use it in GitHub Desktop.
Shopify list product types in a collection by vendor
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
| {% for collection in collections %} | |
| {% for product_type in collections[collection].all_types %} | |
| <li><a href="/collections/{{ collection.handle }}/{{ product_type | handleize }}">{{ product_type }}</a></li> | |
| {% endfor %} | |
| {% endfor %} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment