This concern is more to do with Owl Carousel as a whole, rather than the functionality of my plugin, which uses the Owl Carousel jQuery plugin. https://owlcarousel2.github.io/OwlCarousel2/
Hello @thehowarde
I visited the Owl Carousel jQuery website and tested all the demos that the website has available. In all demos I can press my finger on the carousel and slide the site up and down (on mobile).
About your plugin Issue:
β touch and drag works horizontally for the carousel, but not for the page, even if we drag up and down. This is very limiting on mobile as users cant scroll the page at all if the carousel takes the full screen!
Is there something we can do to allow the website to slide up and down through the slides created by your plugin?
Thanks for your great plugin.
-
This reply was modified 5 years, 4 months ago by
playdiune.
Where specifically is your carousel?
Hello @thehowarde
This is the website http://cliente.euromillionsplay.com/
The carousel is under the starting slider
Thanks
@thehowarde
i found this solution for a similar plugin with the same problem:
.owl-carousel .owl-stage,
.owl-carousel.owl-drag .owl-item{
-ms-touch-action: auto;
touch-action: auto;
}
Can it be used for your plugin ?
You could add that css to your wordpress customizer or to your theme’s css file and try it. I don’t have time to mess with this right now. Currently the touch swipe is active, so that you can swipe the carousel with your finger from side to side.
@thehowarde
This CSS doesnt work with your plugin.
@thehowarde
Got the solution for my case:
.owl-carousel.owl-drag .owl-item {
-ms-touch-action: pan-y !important;
touch-action: pan-y !important;
}
Now, it is working and i can scrool up and down, on mobile π