I implemented the infinite scroll script on my website: http://inoplugs.com/blog/ without using the plugin but I used the standalone jquery version (because of performance reasons, etc.). Add following code to functions.php (at the very bottom)
/* infinte scroll */
function infinite_scroll() {
global $avia_config;
if ( is_archive() || ($avia_config['currently_viewing'] == 'blog' && !is_single()) ){
echo '<script type="text/javascript">';
echo 'jQuery(".content").infinitescroll({
navSelector: ".pagination",
nextSelector: ".pagination a:first",
itemSelector: ".content .post-entry",
loading: {
img: avia_framework_globals.installedAt + "images/custom/loader.gif"
}
},
function(){
avia_ajax_call();
}
);';
echo '</script>';
}
}
add_action('wp_footer', 'infinite_scroll');
and upload the preloader/loader gif image into following folder: wp-content/themes/choices/images/custom/ - in the example aboveI called it loader.gif.
At least add following js code: https://raw.github.com/paulirish/infinite-scroll/master/jquery.infinitescroll.min.js to the bottom of js/avia.js.