JS Code SnippetOn the page you want this to appear, add an HTML widget (FREE) and paste the code in there. Be sure to have < script> before your code and after the code if it isn't already inserted above.
Instructions
Add the custom code elementor pro to <body> - Start
<script> let dhLoadMoreObserver = new IntersectionObserver((entries) => { entries.forEach((entry) => { if (entry.isIntersecting) { let dhLoadMoreButton = document.querySelector('.ts-load-more'); if (dhLoadMoreButton) { dhLoadMoreButton.click(); } } }); }); document.addEventListener("DOMContentLoaded", function() { let dhLoadMoreButton = document.querySelector('.ts-load-more'); if (dhLoadMoreButton) { dhLoadMoreObserver.observe(dhLoadMoreButton); } }); </script>