How can I create a page (similar to /collections) where only some collections are displayed?
Now I’m using Craft
Thanks a Lot
How can I create a page (similar to /collections) where only some collections are displayed?
Now I’m using Craft
Thanks a Lot
{% for collection in collections %}
{% if collection.handle == 'collection1' or collection.handle == 'collection2' %}
## {{ collection.title }}
{% endif %}
{% endfor %}