Hi @maheshmaharjan
Elementor solved the issue with version 3.0.3 of Elementor Pro: https://i.postimg.cc/3RG8bW87/fix.jpg
Now it works for me with WordPress 5.5.1 as well as a WordPress 5.4.2, exemple: https://www.wp-master.org/test-catch-infinite-scroll/
The only question I have is about your Load More button:https://i.postimg.cc/Hxbm9Kzk/button.jpg
How can I center it?
Thanks
EDIT: I look at the code and your DIVs #infinite-handle and #ctis-loading are childrens of the DIV .elementor-posts-container. Doing that make impossible to make the Load More button a full 100% with DIV.
Those 3 DIVs should be placed outside the .elementor-posts-container DIV, like Elementor did with it’s own pagination:
<div class="elementor-posts-container">
<article></article>
<article></article>
<article></article>
</div>
<nav class="elementor-pagination"></nav>
So with same structure it should be:
<div class="elementor-posts-container">
<article></article>
<article></article>
<article></article>
</div>
<div id="infinite-handle"></div>
<div id="ctis-loading"></div>
-
This reply was modified 4 years, 6 months ago by
pako69.