Conflict of "Load More" and frontend filters/search

How are you filtering the collection?
You can bind your pagination logic to a filtered collection.
Example with a sample products database with name and price:

chrome_BHGPIOjMXV

Of course you can also have a collection filtered and paginated on the backend or you can fetch the full unfiltered collection and you filter it on the frontend, just bind the columns item to the filtered result.

“load more” on scroll needs custom code. Ideally it should trigger a workflow action when the end of the page, or a specific element, enters the viewport so you can execute the actions needed for your pagination.

Hope this helps with

1 Like