Hi multimediavda,
You can disable the swipe on mobile, Open the file: /acm/horizontal-projects/tmpl/style-1.php. and override with the code:
<script>
if (window.innerWidth > 767) {
var swiper = new Swiper(".swiper-wrapper-<?php echo $module->id ;?>", {
slidesPerView: "auto",
direction: 'horizontal',
spaceBetween: 0,
freeMode: true,
mousewheel: true,
parallax:true,
speed: 5400,
pagination: {
el: ".swiper-pagination",
type: "progressbar",
},
breakpoints: {
0: {
direction: 'verticle',
},
767: {
direction: 'horizontal',
}
},
});
};
</script>