@kyratn,
we were also checking out the infinite scroll and to achieve what you want, go to Display -> Views, select your template and open the view listing_div. All you need to do is delete or comment out lines 248 through 254:
window.Oby.addEvent(window, 'scroll', function() {
...
});
window.Oby.addEvent(window, 'resize', function() {
...
});
window.hikashop.ready(function() { ... });
These 7 lines add the scroll/resize events which check when you reach the bottom of the page and will automatically add more products. Without these triggers the next products will only be added when you manually click on the link "Load more".
Hope that helps.