Need to have one URL for my collections page in Shopify-Brooklyn theme

My website , www.TOAIArt.com , has a collection : hand-block-printed-bedsheet

It has 44 products on 4 pages :

https://toaiart.com/collections/hand-block-printed-bedsheet?page=1

https://toaiart.com/collections/hand-block-printed-bedsheet?page=2

https://toaiart.com/collections/hand-block-printed-bedsheet?page=3

https://toaiart.com/collections/hand-block-printed-bedsheet?page=4

I need to change collections page to : https://toaiart.com/collections/hand-block-printed-bedsheet

Is that possible?

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.

Hi there,

Please go to Online Store → Theme → Edit code

Find “collection-template.liquid” under “Section

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.

Thanks a lot Sajat , your solution is working !!!

However , is there a way to keep one page URL : https://toaiart.com/collections/hand-block-printed-bedsheet however within this we should see Pg1 ,2,3 option.

When we go from pg1 to pg2 , the contents of the URL (https://toaiart.com/collections/hand-block-printed-bedsheet) should change but the URL should remain the same?