Home › Forums › Product Support Forums › Ajax Search Pro for WordPress Support › Swiping problem on iOS (touch devices) for isotopic › Reply To: Swiping problem on iOS (touch devices) for isotopic
Hi,
Thank you for your kind words, I’m doing what I can to make this plugin better every day 🙂
I’ve found a temporary solution. Put this snippet into the footer.php file in your theme directory before the closing body tag:
[html]<script>
jQuery(".asp_main_container").on("asp_results_show", function(event, id, instance, phrase) {
jQuery("div[id*=ajaxsearchprores] .results").addClass("noSwipe");
});
</script>[/html]
It will attach to the event just after the results are open and adds the “noSwipe” class to the elements. That should prevent the swipe behavior for now.