My friend recently pointed out to me that the infinite-scroll on her site stopped working. My best guess is that it broke after the 3.6 update of WordPress, but I can't be sure.
I read the solution mentioned in this post: http://wordpress.org/support/topic/infinite-scroll-js-error-uncaught-error-infinite_scroll-is-not-defined but that didn't solve my problem.
The only way I could get it back to work was changing footer.php (in infinite-scroll/templates/) to:
setTimeout(function() {
// Because the <code>wp_localize_script</code> method makes everything a string
infinite_scroll = jQuery.parseJSON(infinite_scroll);
jQuery( infinite_scroll.contentSelector ).infinitescroll( infinite_scroll, function(newElements, data, url) { eval(infinite_scroll.callback); });
}, 500);
I realize this is not a real solution, so I'm hoping someone will be able to give more insight into why this is happening all of a sudden and how to solve it properly.
The site: http://www.eyethink.nl
Thanks for reading,
Marloes