Hope someone can help here. I am attempting to iterate through a "smart collection" list of product and search custom metafields data. However my Forloop only gets through the first 50 due to the default 50 limit (http://docs.shopify.com/themes/liquid-variables/collection). Is there a way to get around this?
Example of what I am attempting to do. not actual code. Just trying to illustrate how I am unable to search through the entire products found in collection searchcollection because it only looks at first 50.
{% for product in collections.searchcollection.all_products %} {% capture controlledItem %}{{product.metafields.custom_fields['TEST'] | downcase }}{% endcapture %} {% if controlledItem contains searchTerm[0] %} <!-- FOUND --> {% endif %} {% endfor %}