section-articles
) and another to the Collection List Wrapper (e.g., articles-wrapper
). tag to hide the section if no .articles-wrapper
elements exist, then publish the site to test.
To hide an entire section in Webflow when a Collection List is empty, you can use Webflow’s built-in conditional visibility combined with minimal custom code.
section-articles
).articles-wrapper
.Go to Page Settings → Before tag and add a short script to detect whether the Collection List has any items.
Use a script like this:
Check if there are zero .articles-wrapper
elements inside .section-articles
; if so, hide the section.
Example (no HTML tag shown per guidelines):
This code waits until the DOM is loaded, checks if any dynamic items are rendered, and hides the section if none are found.
To hide a Webflow section when a dynamic list is empty, wrap it in a section with a unique class (e.g., section-articles
), apply a class to the Collection List (e.g., articles-wrapper
), and use simple JavaScript to hide the wrapper if no items exist. Always publish to test since custom code doesn’t run in preview mode.