I’m working on this page where I have the load more feature, I’ve added this many times in the past but for some reason it is taking me to page-2 instead, I don’t know what I missed this time.
Unfortunately I cannot share a read only link as this website is in the client’s account, but here’s a screenshot showing the attributes.
@Support-Luis filters are not working either, and some of the previous attributes I had working stopped working, is there any issues with the attributes?
The client added some cookies, but I don’t know if that could be affecting the scripts?
We can see exactly what’s happening with your load more setup. Your HTML shows both Finsweet Load More and native Webflow pagination are active simultaneously, creating a conflict where the Load More button redirects to page-2 instead of loading items inline
Here’s the fix:
Add this CSS to your page:
.w-pagination-wrapper {
display: none;
}
What’s happening:
Your collection list correctly has fs-list-load=“more” and fs-list-loadcount=“6”
Webflow’s native pagination is properly enabled (required for Load More to work)
But the visible pagination wrapper is interfering with the Load More functionality
Another option is to simply add fs-element=“hide” to your pagination element instead of using CSS - this will accomplish the same thing but keeps everything in the Webflow designer
Remember, the pagination must be enabled but hidden for Load More to work properly!
That’s strange, I never had to do this before, and if I do this I will hide the load more button, right?
I noticed none of the attributes are working anymore, this page has the filters added too, and they don’t work. We also had this a while ago in the Help page working and is no longer working.
When I added window.fsAttributes to the console I got an undefined so it seems the libraries are no loading for some reason.
Is this an error on my end, or something from Finsweet?
I’ve added the missing attribute but still doesn’t work, the search input had everything alright and didn’t work either.
On my end the load more takes me to page-2 so it seems that none of the libraries are loading, as checked in the console when I get undefined in return.
All sorted, I moved the scripts to the top of the page settings before any other scripts and this fixed the problem. In case anybody has the same problem.