How to disable the slider on mobile?

As the question states, I’m wondering if there’s a way to disable the slider feature for mobile readers? I want to keep it active for desktop readers.

There is wordpress built in function “wp_is_mobile();”

More information here: url

Altough it would be nice to know if someone has used it before and how good this function is.

Hi there!

This CSS code works on the Dazzling theme so I assume it will also work on Sparkling. You can try it by adding this code to the CSS editor.

@media screen and (max-width: 767px) {
.flexslider {
display: none;
}
}

@littlelarey This CSS works just fine!
Tested on chrome when rezising and on my mobile chrome browser.

Thank you =)

@littlelarey

Thank you so much that worked perfectly!

You’re welcome! I’m figuring things out as I go myself so I try to help out where I can. Good luck!