I think I’ve found a bug regarding Component Slots in combination with AJAX Pagination.
Setup:
I have a Query Loop using a Component (Reveal Card) for the items.
Inside this component, I have a structure (Head, Body, Footer).
The Footer contains a Slot where I inject specific content (e.g., custom term loops or badges) depending on the page.
The Issue:
Initial Page Load: Everything works perfectly. The content inside the Slot is displayed as expected.
AJAX Pagination: When I switch to the next page via AJAX pagination, the component itself (Head and Body) renders correctly, but the content within the Slot is missing/not loaded.
Cross-check: If I remove the Slot and place the exact same elements directly into the component’s footer (hardcoded in the component), everything works fine even after AJAX pagination.
I’m sorry that it’s causing you so many problems. The only workaround would probably be to do without the component slots, you can add them back once the problem has been fixed