CMS Nest copying Webflow interactions

Hey there,

I was wondering if elements using Webflow interactions on the CMS Nest can copy over the animation.

The featured section on the homepage on nested slides dont have the set Webflow animation when nested.

https://preview.webflow.com/preview/brennan-artists?utm_medium=preview_link&utm_source=designer&utm_content=brennan-artists&preview=9b43f9a7edb982678c09fb41f6eb909b&workflow=preview

hey @info2! You can wait until CMS Nest is finished loading to reset Webflow interactions with this snippet

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

          window.Webflow && window.Webflow.destroy();
          window.Webflow && window.Webflow.ready();
          window.Webflow && window.Webflow.require('ix2').init();
          document.dispatchEvent(new Event('readystatechange'));
        },
      ]);
    </script>

Please add it to the </body> and test it out!

2 Likes

oh man! Just what I was looking for! Thanks

1 Like