• Hi Everyone,

    I’m having trouble with Infinite Scroll on my blog. I am using the prosense theme with a couple modifications. This is what I have set as the selectors right now and it’s not working. I would really appreciate it if something can help me out!! Here’s the link to my CSS code: http://snipt.org/ziaja0

    content selector : section#content
    Posts Selector: .post.item
    Navigation Selector: .navigation
    Next Page Selector: .navigation

Viewing 1 replies (of 1 total)
  • nazzilla

    (@nazzilla)

    try this for js

    $('#content').infinitescroll({
         	navSelector  : ".navigation",
        	nextSelector : ".navigation .next a",
        	itemSelector : "#content .post" ,
    });

    and this for pagination

    <nav id="navigation">
    	<div class="past"><?php previous_posts_link('&laquo; Previous Entries') ?></div>
    	<div class="next"><?php next_posts_link('Next Entries &raquo;','') ?></div>
    </nav>

Viewing 1 replies (of 1 total)

The topic ‘Infinite Scroll Not Working’ is closed to new replies.