How do I loop through all the products of a store using Liquid (Shopify)?
问题 I can't. I know. Shopify imposes a limit when it comes to the number of products one can loop through on a page. The current limit is 50. Actually, this is not true . One can loop through all the products of a store using liquid : {% paginate collections["all-products"].products by 10000 %} {% for product in collections["all-products"].products %} {% comment %}looping through all 10000 products{% endcomment %} {% endfor %} {% endpaginate %} In the above example, if a store has up to 10000