Hi,
I use
{% for collection in collections reversed%}
{% if collection.image and collection.title contains “ABC” %}
to get a subset of collections matching the criteria.This worked fine until the total Nr. of collections grew ++ 1000+++ in the collections list only 1000 are contained (or the loop stops after 1000 i don’t know which). Unfortunately the “reversed” parameter does not give me the “latest” (newest) collections; the cutoff seems to be done before reversed is applied.
The result is - I don’t get a complete list of my ABC collections.
in the documentation here: https://shopify.dev/docs/themes/liquid/reference/objects#collections I find nothing about the cutoff after 1000 collections
Any help much appreciated.
The wanted output is a list of collections images with links to the collections:
https://mode-erleben.at/pages/empfehlung
every collection is an “outfit” - a bundle of manually selected items.
Is there a way to filter BEFORE the loop starts?