Hey guesssilk,
The plugin doesn’t contain an auto-load feature currently, but I’ve put together a JavaScript snippet for you which should help create this functionality by combining the jQuery scroll event with the jQuery trigger function, so that as you scroll down the page then it triggers a click on the ‘Load More’ button. Try adding the following to the plugin’s Custom JavaScript section (Customize > Custom JavaScript) and see whether it works for you:
var scrolled = 0;
jQuery(window).on('scroll', function() {
var y_scroll_pos = window.pageYOffset;
var scroll_pos_test = 250;
if(y_scroll_pos > scroll_pos_test) {
scrolled++;
if(scrolled == 1) jQuery( ".sbi_load_btn" ).trigger( "click" );
}
});
You’d need to enable the Load More button in order for it to work. You may need to tweak the numbers a bit, but should hopefully get you pretty close.
John