This website uses cookies to personalize your experience. By using this website you agree to our cookie policy.

Reply To: Swiping problem on iOS (touch devices) for isotopic

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

#10077
Ernest MarcinkoErnest Marcinko
Keymaster

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.