Want to remove pages and have scrolling of products

Topic summary

Issue: The store owner wants to display more than 9 products per section and prefers continuous scrolling instead of paginated pages.

Key points:

  • Suggested to check the theme customizer for a pagination or “infinite scroll” option. Infinite scroll loads more products automatically as the user scrolls; pagination splits products across pages.
  • The owner couldn’t find any pagination setting. They asked for a non-code solution.
  • Response: No built-in option available; custom coding is required for either increasing the number of products per page or implementing infinite scroll.

Implementation guidance:

  • If only increasing the product count per page: edit the collection template and adjust the Liquid pagination line “{% paginate collection.products by %}” by adding a number after “by” (e.g., 24).
  • For true infinite scroll: needs custom development. Helper offered to assist via collaborator access.

Status: Unresolved. Next step is to choose between a higher per-page count or infinite scroll; both require code changes if the theme lacks settings.

Summarized with AI on January 18. AI used: gpt-5.

I want my website on shopify to have more than 9 products showing in each section. i want the products to go invariable other than having 9 products on each page. how to make that happen?

Hi @insiyaturtlefee

Did you check in the theme customizer is there any option to change the pagination to an infinite scroll?
If not then have to do some custom coding in the theme for that, you have to give me Collaborator access so I can check and help you out.

Best Regards,
Rock Technolabs

2 Likes

Couldn’t find anything related to pagination, any other option other than chnaging the code?

No there is no other option I have to do custom coding.

Do you want to show more than 9 products or infinite scroll?

If you want to show more then 9 then check this code in collection file

{% paginate collection.products by %}
After by, you can add the number which number of product you want show.