Hello There,
Apologize for the issue you're experiencing. Please add the following JS code to your Template Options -> Custom Code -> Custom JavaScript
jQuery(document).ready(function ($) {
function isMobile() {
return /Mobi|Android|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent);
}
setTimeout(function () {
if (isMobile()) {
$('.sppb-addon-sp-slider').each(function () {
var $slider = $(this);
var instance = $slider.data('jsSlider');
if (instance) {
instance.onDragStart = function (e) { };
instance.onDragMove = function (e) { };
instance.onDragEnd = function (e) { };
instance.$outerStage.off('touchstart.jsSlider touchmove.jsSlider touchend.jsSlider touchcancel.jsSlider');
}
});
}
}, 1000);
});
This should resolve the problem. Please let us know if you need any further assistance!
Best regards