I don’t quite understand the question but I’ll guess: You want all the products to show on the one page. Is that correct?
It looks like your theme is set up to only show 12 products per collection page. First place to look is the theme settings to see if you can increase this to a large number. I don’t think Brooklyn (if I guessed your theme correctly) gives that option but check first!
If your theme doesn’t give you that control you would be able to edit the code to do that in the “collection-template.liquid” file. Lets cross that topic once you’ve checked settings.
Please remove " {%- paginate collection.products by 12 -%}" on line number 42 or search for the same if you have edited the code. On theme, it is default [email removed] line number 42.
Search for
{%- if paginate.pages > 1 -%} {%- include ‘pagination’ -%} {%- endif -%}
{%- endpaginate -%}
and remove this block.
This should do the trick.
Thanks,
Please mark this as Accepted solution if this resolved your issue.