Published
May 8, 2025
Slider
<script>
Webflow.push(function() {
Webflow.require('slider').redraw();
});
Webflow.ready();
</script>
Remove conditionally hidden slides and re-init slider.
<script>
Webflow.push(function() {
$('.w-condition-invisible.w-slide').remove();
Webflow.require('slider').redraw();
});
Webflow.ready();
</script>
https://discourse.webflow.com/t/solution-cms-gallery-slider-showing-1-blank-slide/135844
<style>
.w-slide:empty {
display: none;
}
</style>