Questions tagged [infinite-scroll]
Infinite Scroll allows a web page to load new content dynamically as a user reaches the bottom of the current page.
64 questions
0 votes
0 answers
28 views
layout issue after load more for posts
Trying to avoid pagination on the blogs page, I'm getting a layout based on fallback to basic post display. This is like infinite scroll but I get only 10 posts in next page with the load more p My ...
0 votes
1 answer
42 views
Get post list in same category
I have a code that loads the next post infinitely at the end of each post. Currently, the next post is picked at random. I would like the next post to be restricted to the category of the current post....
0 votes
1 answer
335 views
Blog Posts - Scroll to view more
I have a page with all my blog posts in it and I have it set to show all my posts on one page. (See screenshot) Now am I looking for away to only show 10 posts at a time and on scroll show more. I see ...
0 votes
1 answer
77 views
Infinite Scroll appending Next Product Category Term pages
I'm using Infinite Scroll and the following great code from here to generate Next Taxonomy Term Link in a term loop. I want to ajax append Next Woocommerce Product Category when you reach the end of ...
0 votes
0 answers
127 views
Infinite Scroll Only On Wordpress Mobile
I was wondering if it's possible to make only the Wordpress homepage (with the latest posts) have infinite scroll and keep the pagination on desktop view. I have viewed some other questions regarding ...
0 votes
1 answer
61 views
Wordpress mobil will not scroll
I am on WordPress 5.3.2 running Twenty Fourteen Child theme. socalda.org For some reason if you look at the site on the phone you cannot scroll down anymore. It scrolls down on the computer but not on ...
1 vote
0 answers
125 views
Load MediaPlayerElement after Infinity Scroll loads more posts
I am using Infinite Scroll on a site that is using a custom styled MediaPlayer Element (using Wordpress' built-in MediaElements.JS). The style initially loads fine, but once Infinite Scroll loads ...
0 votes
0 answers
1k views
Infinite scroll without plugin using ajax
I've created an infinite scroll without using any plugin to achieve the objective. The problem is that the bootstrap masonry cards grid are loading all the posts cards at the first scroll or will load ...
0 votes
1 answer
282 views
On scrolling showing intervesion error in chrome console
When I scroll the page in chrome it show the intervention error. I tried adding various script like window.addEventListener("mousedown,wheel", handleMouseDown, { passive: false}); but unable to fix ...
0 votes
2 answers
307 views
Remove Jetpack infinite-wrap
I'm trying to remove the infinite-wrap class jetpack adds to posts with infinite scroll turned on because I want to add infinitely loaded posts to a gridded layout. I found the article here that says ...
1 vote
0 answers
237 views
Using infinite scroll ajax load more with search parameter
I have a infinite scroll working on my wordpress site. It works perfectly well on category pages, e.g. example.com/example however it doesnt work when I try to use it on a search page, e.g. ...
1 vote
1 answer
2k views
Ajax Infinite Scroll In Custom WP_Query Loop Not Working
I have set up a custom WP_Query loop for a page template. I am implementing an infinite scroll method via ajax, and the call is successful, but for some reason I cannot get the query to like the paged ...
4 votes
2 answers
16k views
Wordpress Infinite Scroll without using any plugin
Background information can be skipped. I wanted to use the infinite scrolling option on my Wordpress theme, but I am not well trained in Javascript so I tried this solution: https://wptheming.com/...
2 votes
1 answer
304 views
Exclude Post Type from Jetpack Infinite Scroll
I'm using the Underscores theme which comes with the following (very) handy code in inc/jetpack.php add_theme_support( 'infinite-scroll', array( 'container' => 'main', 'render' => '...
-1 votes
2 answers
1k views
How to count posts in loop with infinite scroll?
on my index.php I display all my posts with infinite scroll. Before the WP loop I added a $counter, which counts up with every post. But if the infinite scroll loads new posts, the counter will be ...