Access our premium support and let us know your problems, we will help you solve them.

0
No products in the cart.

Forum Replies Created

Viewing 1 post (of 1 total)
  • Author
    Posts
  • in reply to: Overcome limit of 50 in for loop in shopify #9600
    blankmarcos-buarque
    Participant

    The 50 items limit per page should be correct and it is documented. Except for the fact that… It is not. Actually, you can circumvent that limit in Shopify by establishing a higher limit of up to 1000 items per page. Just being redundant, here is a sample code:

    {% paginate mycollection.products by 250 %}
      {% for product in mycollection.products %}
        {% include 'my-product-template' %}
      {% endfor %}
    {% endpaginate %}
    

    Also answered here.

Viewing 1 post (of 1 total)