Johann, I have the same problem, did you find out about it???
EggMonger
ok! the problem lies in the bottom of the page! it need a reason to find another page!
I can’t help you, since I have coders doing it, but I had to push them to solve it!
http://www.frenetichappiness.com
Infinite-scroll doesn’t work with iPhone or iPad. I use this code to put a next-previus page pagination, so when the user is surfing the site in an iPhone or iPad it shows the navigation instead of the infinite-scroll.
More info about the use of the code here.
<?php if(mobile_device_detect(true,true,true,true,true,true,true,false,false)){ ?>
<div id="paginacion">
<?php
global $wp_query;
$big = 999999999; // need an unlikely integer
echo paginate_links( array(
'base' => str_replace( $big, '%#%', esc_url( get_pagenum_link( $big ) ) ),
'format' => '?paged=%#%',
'current' => max( 1, get_query_var('paged') ),
'total' => $wp_query->max_num_pages
) );
?>
</div>
<? }else{ ?>
<?php twentyeleven_content_nav( 'nav-below' ); ?>
<? }?>