Is anyone aware of the pagination limit on products per page being raised above 50?
I’m able to return 180 products per page without using a custom layout.
Is this a recent change? If so, what is the new limit?
Or am I missing something?
Is anyone aware of the pagination limit on products per page being raised above 50?
I’m able to return 180 products per page without using a custom layout.
Is this a recent change? If so, what is the new limit?
Or am I missing something?
Hi
You can only get 50 product per page by pagination.
I have a store with 180 products, and all 180 are returning in a single page. This wasn’t the case a few months ago, when I last tried this.
{%- paginate collection.products by 1000 -%}
{%- for product in collection.products -%}
… 180 products…
{%- endfor -%}
{%- endpaginate -%}
If Page has another pagination. it will not work out
@Victorshyam it might be helpful to you :
{% paginate mycollection.products by 180 %}
{% for product in mycollection.products %}
{% include 'my-product-template' %}
{% endfor %}
{% endpaginate %}
@Ujjaval It will work. but if the current page has additional pagination. this loop is not working.
My Scenario is : i will make some group counts based on price on shows top of the collection product grid using the above code.
But if i change the page no in the collection products list. the above pagination is not working…
@Victorshyam you can’t be splitted that additional collection on this pagination list . So , it might not be effect while changing the number of pagination.