I have paginated a product list over a limit of 50 to fit in the whole page (index.liquid
).
But the if condition within for loop doesn't apply over whole paginated items as for loop is limited to 50 items. Any help would be appreciated.
<td class="collection-reviews">
{% paginate collections.all.products by 1000 %}
{% for product in collections.all.products %}
{%if product.metafields.spr.reviews %}
<div id="shopify-product-reviews" data-id="{{product.id}}">{{ product.metafields.spr.reviews }}</div>
{%endif%}
{% endfor %}
{%endpaginate%}
</td>