Filter, Nest & Combine - Anyway to make this work

I’m trying to create a complex filter that filters multiple collections at once, that each have 5+ categories. Ideally I would want to use nest and combine and make it filter like one big list, but this doesn’t work at the moment.

Does anyone know of any workarounds that could be used to accomplish this?

hey @bradfordjhuber! We can now do this by preventing the load of CMS Combine until after CMS Nest is done. You’ll need to use this CMS Combine script with the preventload attribute.

    <!-- [Attributes by Finsweet] CMS Combine -->
    <script defer fs-attributes-preventload="true" src="https://cdn.jsdelivr.net/npm/@finsweet/attributes-cmscombine@1/cmscombine.js"></script>

Then on your </body> you’ll need to add this CMS Nest callback that initiates CMS Combine.

<script>
      window.fsAttributes = window.fsAttributes || [];
      window.fsAttributes.push([
        'cmsnest',
        (listInstances) => {
          console.log('cmsnest Successfully loaded!');
          window.fsAttributes.cmscombine.init();
        },
      ]);
    </script>
1 Like

Will test this out! thank you :pray: