.w-dyn-item
elements.document.querySelector('.events-section').style.display = 'none';
to hide the section, or use Finsweet’s CMS Library to handle this without custom code.Yes, you can automatically hide a section containing a CMS Collection List in Webflow when there are no items (e.g., no events in your CMS). This requires a simple setup using Webflow’s built-in conditional visibility or a lightweight custom solution.
To actually hide the entire section when there are no CMS items, you’ll need a small JavaScript snippet:
</body>
in Page Settings > Custom Code > Footer Code).Here’s how to do it:
Give your Collection List Wrapper a unique class (e.g., .events-list
).
Give the section that wraps the collection list a class like .events-section
.
Add this code in Page Settings > Footer Code:
(Note: Replace the class names with those you're using in Webflow)
`Webflow.ready(function() {
if (document.querySelectorAll('.events-list .w-dyn-item').length === 0) {
document.querySelector('.events-section').style.display = 'none';
}
});`
This script waits for the CMS items to load and hides the section if none exist.
fs-cmsfilter“empty-state-action=”remove”
can be applied in custom implementations.Webflow doesn’t natively allow conditional visibility on entire sections based on CMS data, but you can hide a section if the CMS Collection is empty using simple JavaScript. Just target the collection and its parent section, and hide accordingly when no .w-dyn-item
exists.