Passo 1
Faça o download do jquery.infinitescroll.min.js em https://github.com/paulirish/infinite-scroll e coloque-o em /sites/all/themes/YOURTHEME/js/jquery.infinitescroll.min.js.
Passo 2
Adicione o arquivo JavaScript ao arquivo .info do seu tema.
etapa 3
Crie um arquivo JavaScript personalizado /sites/all/themes/YOURTHEME/js/YOURTHEME.js que contenha o seguinte código.
/**
* Implementation of autopager @see https://github.com/paulirish/infinite-scroll
* All views that have the "autopager" class will have an autopager
*/
Drupal.behaviors.viewsInfiniteScroll = function(context) {
$(function(){
var $container = $('div.autopager div.view-content');
$container.imagesLoaded( function(){
$container.infinitescroll({
navSelector : 'div.autopager .pager', // selector for the paged navigation
nextSelector : 'div.autopager .pager-next a', // selector for the NEXT link (to page 2)
itemSelector : 'div.autopager .views-row', // selector for all items you'll retrieve
loading: {
finishedMsg: 'No more pages to load.',
img: '/sites/all/themes/YOURTHEME/images/loading.gif'
}
})
})
});
}
Passo 4
Adicione o CSS do carregador de rolagem infinito
#infscr-loading {
position: fixed;
text-align: center;
bottom: 300px;
left: 42%;
z-index: 100;
background: white;
background: hsla( 0, 0%, 100%, 0.9 );
padding: 20px;
color: #222;
font-size: 15px;
font-weight: bold;
-webkit-border-radius: 10px;
-moz-border-radius: 10px;
border-radius: 10px;
}
Etapa 5
Verifique se a versão do jquery é mais recente que a 1.7.1. Use um dos métodos descritos em http://drupal.org/node/1058168 para instalar uma versão mais recente do jQuery no Drupal.