Home slider disappears when page is fully loaded

Hi!
After the update to Wordpress 5.6 the slider in the home page disappears when the page is fully loaded.
This happens on Firefox and Edge on Windows and on Safari on iPad.
On Chrome is working fine.
I tried to disable lazy loading for images but the problem is still there.
It worked well for more than a year with my current setup so I don’t think it’s a plugin problem.
Thank you!

Hey there

let me see it, please provide a link to the page and I will check it :slight_smile:

1 Like

Sure!
You can see it at

Thank you!

Hey there

Are you using this code anywhere on the site?

.flexslider .slides>li {
    display: none;
    -webkit-backface-visibility: hidden;
}

if no, it can be fixed by this css code:

.flexslider .slides>li {
    display: block;
    -webkit-backface-visibility: visible;
}
1 Like

I’m not using that code in my site.
I tried adding your code but now all the slides appear in the home page without the sliding function.
I remembered that I have the Autoptimize plugin, so I deactivated it but nothing changed.

Thank you for the help!