Skip to content

Instantly share code, notes, and snippets.

@marioloncarek
Created September 5, 2018 09:11
Show Gist options
  • Select an option

  • Save marioloncarek/f8863c9f24a28639c89582978c26546f to your computer and use it in GitHub Desktop.

Select an option

Save marioloncarek/f8863c9f24a28639c89582978c26546f to your computer and use it in GitHub Desktop.
Display shopfiy collections selected from custom fields with their products
{% 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