Does your theme's header.php include a call to the wp_head()
function? Jetpack uses that function to output the information needed for each Infinite Scroll request, and if that variable isn't available, Infinite Scroll cannot function.
If wp_head()
isn't present, you'll need to add it just before the </head>
tag in your theme.
If wp_head()
is present, can you:
- Temporarily enable Infinite Scroll
- Load your site's homepage
- View the source for your site
- Provide the source via a service such as Pastebin
- Disable Infinite Scroll
Thanks!