Load more is triggering pagination from Webflow

Hello,

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?

Hey @info6!

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 :thinking:

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 :flexed_biceps:

Remember, the pagination must be enabled but hidden for Load More to work properly!

Let us know how it goes, and @Support-Luis or @Support-Pedro can help if you need further assistance.

Hi @Support-Finn ,

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?

Hey @info6,

I’ve just checked this out

The load-more button loads the extra 2 cards on my end

For the filtering,

You need to add a fs-list-field="category" to the actual filters

E.g. The Education filter button only has a fs-list-value="Education"

It also needs a fs-list-field="category" so it matches with its relevant categories

You can view an example setup here

Thanks for the help.

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.

Maybe @Support-Luis or @Support-Pedro can share some insights.

Ok no problem, please try run the page incognito as we wait for insights from the rest of the team

Could be a cache issue

No luck unfortunately, I tried incognito and 2 different browsers.

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.

1 Like

Thanks @info6 for the update!