Repeating Content Infinitely on Search and Category Template
-
Hi All,
I am trying to use YITH Infinite Scrolling on a site. However, on search results page and category page, items that have been already shown keeps duplicating on each load. For example, if a search result page show 10 items (numbered 1-10) at first, then when one scrolls down, 1-10 is loaded again in addition to 11-20 and so on. After loading the last item, further scrolling keeps triggering the plugin to load everything. The page template does NOT use WP query so there is no place to modify or add attributes. It has a loop like this:
while ( have_posts() ) : the_post();
get_template_part( $template_part, get_post_format() );
endwhile;(div for single post item is within the template_part)
How do I get the infinite scroll to load properly?
- The topic ‘Repeating Content Infinitely on Search and Category Template’ is closed to new replies.