Created
September 5, 2018 09:11
-
-
Save marioloncarek/f8863c9f24a28639c89582978c26546f to your computer and use it in GitHub Desktop.
Display shopfiy collections selected from custom fields with their products
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 %} | |
| {% if collection.metafields.custom_fields["display_on_collection_page"] == "men" %} | |
| <div> | |
| <h1>{{ collection.title }}</h1> | |
| {% for product in collection.products %} | |
| <div> | |
| <small>{{ product.title }}</small> | |
| </div> | |
| {% endfor %} | |
| </div> | |
| {% endif %} | |
| {% endfor %} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment