Filters Disappear after Implementing CMS Filter and Load for ENTERPRISE CLIENT

My filters completely disappear when I publish the site. I don’t understand what’s happening. I’ve added every attribute correctly from what I can tell. I’ve been working with finsweet tools for years and have never seen this happen before. Please help as this is a very important enterprise client

read-only → Webflow - bill.com

Hey @jakeschlegel86!

It looks like there’s an issue with how the fs-list-element="tag" element is being removed from the page by our script.

The simplest fix is to wrap the tag template element in an extra <div>, so the final structure looks like this:

<div>
  <div fs-list-element="tag">
    <div fs-list-element="tag-field">Tag</div>
    <div fs-list-element="tag-operator">=</div>
    <div fs-list-element="tag-value">Tag</div>
    <div fs-list-element="tag-remove">
      <svg
        width="100%"
        height="100%"
        viewBox="0 0 24 24"
        fill="none"
        xmlns="http://www.w3.org/2000/svg"
      ></svg>
    </div>
  </div>
</div>

This ensures the script removes the correct element without interfering with the filter structure.

I’ll update the docs to reflect this better.

Apologies for the inconvenience!:folded_hands:

1 Like