We're moving the community! Starting July 7, the current community will be read-only for approx. 2 weeks. You can browse content, but posting will be temporarily unavailable. Learn more

how to make infinite scroll for products

how to make infinite scroll for products

HCM15
Excursionist
41 0 8

hello! id like to have an infinite scroll instead of pages please, how can I change this? studio theme campomadero.com TIA

Captura de pantalla 2025-01-29 a la(s) 4.20.07 p. m..png

Replies 5 (5)

CodingFifty
Shopify Partner
1102 162 191

Hi @HCM15,

 

Go to your theme's "Edit Code" Option, then in the search bar type "theme.liquid"
Above the tag "</body>" tag paste the following. Screenshot attached for reference.

<script>
document.addEventListener('DOMContentLoaded', function() {
   const button = document.querySelector(".button.button.button--primary.button--big.js-load-more");

    const observer = new IntersectionObserver((entries) => {
      entries.forEach((entry) => {
        if (entry.isIntersecting) {
          button.click();
          observer.unobserve(button);
        }
      });
    });
    observer.observe(button);
    
    window.addEventListener("scroll", () => {
      const offset = 100;
    
      if (!button. isIntersecting && 
          (window.scrollY + window.innerHeight) >= button.getBoundingClientRect().top - offset) {
        observer.observe(button);
      }
    }); 
})
</script>
 

CodingFifty_0-1738257904300.png

 

 

Coding Fifty || Shopify Partner
For any custom section queries, please visit: Fiverr Profile
Found my response useful? Like it and mark as Accepted Solution!
For additional discussions, reach out via: Email ID: codingfifty@gmail.com
HCM15
Excursionist
41 0 8

hi thankyou though I still see the page numbers and doesn't scroll

CodingFifty
Shopify Partner
1102 162 191

Please share store URL.

Coding Fifty || Shopify Partner
For any custom section queries, please visit: Fiverr Profile
Found my response useful? Like it and mark as Accepted Solution!
For additional discussions, reach out via: Email ID: codingfifty@gmail.com
HCM15
Excursionist
41 0 8

hello campomadero.com 

HCM15
Excursionist
41 0 8

hello! id like to have an infinite scroll instead of pages please, how can I change this? studio theme campomadero.com TIA