Hi there! For some reason my website is limiting me to the number of products showing in a collection. For example, I have 12 pairs of shoes showing on my website but 22 pairs are added to the collection. Does anyone know why it wouldn’t show all of the shoes and stops at 12?
Brooklyn theme by default paginate the collection by 12 products.
You can change this value manually by modifying the file collection-template.liquid
You can replace "by 12" with “by 24” for example.
{%- paginate collection.products by 12 -%}
1 Like
That worked, thank you so much!!