I\'m currently using Owl Carousel to show a gallery on desktop/laptop sized devices. However on smaller devices I\'d like to disable the plugin and show each image stacked under
Easier to use a CSS based solution
@media screen and (max-width: 992px) { .owl-item.cloned{ display: none !important; } .owl-stage{ transform:none !important; transition: none !important; width: auto !important; } .owl-item{ width: auto !important; } }