Infinite Scroll jumbling posts
-
Nice to see that you have added infinite scroll support.
Unfortunately, it doesn’t work properly, either in your theme or in a child theme.
Posts “jump” out of order and overlap each other. Eventually, they break the masonry grid and simply display vertically.
I needed to DISABLE infinite scroll in my child theme to get back your previous functionality.
function stop_infinite_scroll() { remove_theme_support( 'infinite-scroll'); } add_action( 'after_setup_theme', 'stop_infinite_scroll', 999 );
Since Infinite Scroll does not work in the Live Theme Preview mode, it clued me into the fact that I needed to disable the functionality in order to get my posts to behave.
I am wondering if this is connected to that post-out-of-order bug you are looking at.
I would be happy to remove my patch so you can see the issue if we can schedule a short window in which to do so. I do not want to leave my site in a broken state for very long.
- The topic ‘Infinite Scroll jumbling posts’ is closed to new replies.