My shops /collections -page only display 1000 collections

On a shop, you can go to your shopurl/collections to display all your collections. The problem is, this shop have a lot of collections, and that page seems to only show 1000 collections.

Also this shows only 1000 collections

{% for collection in collections %}
  {{- collection.title | link_to: collection.url }}<br />
{% endfor %}

I can’t find anything in the documentation or on this forum on where to possibly change that limit. Is it possible?

you need to use paginate

{% paginate collections by 1000 -%}
  {% for collection in collections -%}
    {{ collection.title | link_to: collection.url }}
  {%- endfor %}

  {{- paginate | default_pagination }}
{%- endpaginate %}