Forum Replies Created

Viewing 6 replies - 1 through 6 (of 6 total)
  • Thread Starter tophboogie

    (@tophboogie)

    Hi,
    Yes – changing the permalinks settings made things works as expected. Easy enough, thanks a bunch.

    I am still getting the warnings I mentioned, however. So far it doesn’t seem to have an effect on functionality, but please let me know if you figure it out.

    Thanks for creating this plugin, I’m loving it so far.

    it seems that rolling back ajaxify.js to version 1.5.1 fixes my problem. Unless I’m mistaken, the only changes are that the .live() function was replaced with .go()

    Hi,

    I’m also having the same problem – the plugin was working fine until I updated it today. Now site links will only ajax load the first page.

    I can get the links to load properly by changing the ‘menu container class’ in the options panel to a class that does not exist on my pages. Of course, then my menu doesn’t update itself properly, but at least all the links are ajax loading.

    Again, I haven’t changed anything else on the site, except update this plugin – so I think this update may have introduced a bug. Of course it could just be an issue with my site, too.

    Hi Jeremy,
    I’m confused by your answer – the Infinite Scroll module is already loading content in the correct place, and I don’t particularly need to include query arguments (I don’t think). The problem is that the urls start changing around incorrectly on certain pages.

    Hi Jeremy!
    Thanks again for your help looking into this. Apologies for disabling the broken functionality, I’ll leave IS running this time so you can have a better look.

    I’ve commented out the line involving relative urls – however this actually made things slightly worse. With that commented out, paginated blog pages also are having problems with the url changing (say, from ‘/blog/page/2’ to simply ‘/blog’). With the line uncommented this effect is only seen on single post pages, not paginated blog pages too.

    Thanks!

    Hello!

    Was this issue ever resolved? I am seeing a similar problem with a blog I am building using the Roots theme.

    I configured Ajaxify WordPress Site plugin to ajax load all page requests. When Infinite scroll is disabled everything works happily, however when both AWS and jetpack’s infinite scroll are enabled I see odd behavior.

    First, if the blog page is accessed directly (here) the infinite scroll works as expected. When the blog page is loaded via ajax request from another page, there is no infinite scroll. I assume this has something to do with the jquery not recognizing new DOM elements, but I am unable to find a solution.

    Also, as described above, some of my post single pages have the url change while scrolling the single page. This only happens with the AWS plugin is enabled. Also, this only seems to happen on posts that were loaded via the infinite scroller. (IE: only posts NOT included on the first page of the blog)

    My code to enable infinite scroll is below – thanks in advance for any help pointing me in the right direction ??

    add_action( 'init', 'infinite_scroll_init' );
    function infinite_scroll_init() {
    	add_theme_support( 'infinite-scroll', array(
    		'container' => 'infinite-scroll-loop',
    		'footer'    => false,
    		'render'	=> 'tb_render_function',
    		'wrapper'	=> false
    	) );
    }
    function tb_render_function() {
    
    	?><style>nav.post-nav {display:none;}</style><?php		
    
    	while (have_posts()) : the_post();
    		get_template_part('templates/content', get_post_format());
    	endwhile;
    }

    EDIT: updated incorrect blog link :/

Viewing 6 replies - 1 through 6 (of 6 total)