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

0
No products in the cart.
  • This topic is empty.
Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #9598
    blankoptimus
    Participant

    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.

    {% paginate collections.all.products by 1000 %}
        {% for product in collections.all.products %}
          {% if product.metafields.spr.reviews %}
            {{ product.metafields.spr.reviews }}
          {% endif %}
        {% endfor %}
    {% endpaginate %}
    
    #9599
    blanksark
    Participant

    No, you cannot overcome it, You can query up to 50 product per page, Shopify won’t allow more than 50 products, in order to maintain server load balance.

    quote from shopify documentation : http://docs.shopify.com/manual/configuration/store-customization/page-specific/collections/add-view-all-to-collection-pages

    Don’t ever paginate a collection by more than 50, that’s how many products maximum you should query per page. Be respectful of Shopify’s app servers. If you are not using any paginate tags, pagination does kick in behind the scene and you will only receive the first 50 products in said collection.

    #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 3 posts - 1 through 3 (of 3 total)
  • You must be logged in to reply to this topic.