Infinite Scroll Not Working
-
Infinite Scroll has been broken on our site for a while now.
I can see that JavaScript works, but the site fails to load the posts.
Here’s my code so far:
add_theme_support('infinite-scroll', array( 'container' => 'infinite-scroll', 'render' => 'fralin_render_infinite_posts', 'footer' => false, 'posts_per_page' => 12, ));
function fralin_render_infinite_posts() { while (have_posts()) { the_post(); get_template_part('template-parts/content', get_post_type()); } }
If checking the body class on scroll, you can see that it appends
infinity-success
to the body, but nothing happens on the wrapper or page. I’ve checked the page source to see if the posts are loaded elsewhere, but I can’t get anywhere with this.I’ve also checked the Jetpack Debug page and everything checked out.
Any ideas?
Thanks in advance.
The page I need help with: [log in to see the link]
Viewing 7 replies - 1 through 7 (of 7 total)
Viewing 7 replies - 1 through 7 (of 7 total)
- The topic ‘Infinite Scroll Not Working’ is closed to new replies.