Inject static item in CMS list without it being counted as one

I have a CMS listing with load more that gets a static item injected into its listing, this item spans across 4 dynamic items

Now when I set its pagination limit to 8 items it counts the static item aswell, making it in effect only showing 7 dynamic items, but then I set it to 9, then when I press next it will add an additional 9 to the llist… instead of the 8 that I would want it to add.

Is there a secret attribute that I can add to prevent the static item from being counted?

Hey @marcel!

I noticed you’re using fs-list-interactive="true" on your item, which is causing it to be counted as part of the list.

You can fix this by removing fs-list-interactive="true" (or setting it to false) from your item. This way, the static item won’t be counted in pagination, and only dynamic CMS items will be included.

If you want to keep the static item interactive (e.g., for filtering) but still ignore it in pagination, I can work on a solution for that as well.

Let me know what works better for you!