Home › Forums › Product Support Forums › Ajax Search Pro for WordPress Support › Plugin Looping while loading
This topic contains 3 replies, has 2 voices, and was last updated by Ernest Marcinko 7 years, 2 months ago.
- AuthorPosts
- September 10, 2016 at 1:22 pm #10067
Hello,
First off, we absolutely love this plugin. It is very helpful and easy to use.The issue we are having is the plugin is looping when search terms are being entered, typed or selected. The plugin attempts to load the results, however right before they display it keeps looping. I just upgraded to 4.9.7. I’m sure this is a configuration issue with the coding.
1) http://198.46.81.219/~ehkspo5/AHRBeta/index.php/player-search/
2) http://198.46.81.219/~ehkspo5/AHRBeta/index.php/member-rosters/Could you please let me know what you find out. I appreciate it. Thank you
September 12, 2016 at 10:44 am #10084Hi,
It’s not a configuration issue unfortunately. There is a 3rd party script attaching to the “click” event of the input and it automatically redirects as soon as it’s clicked – causing the looping issue. I was not able to determine which script is to blame unfortunately.
I have found a solution though, and placed the following custom script into the footer.php file in the theme directory just before the closing body tag:
<script> jQuery(function($){ $(".proinput input").on("click", function(e) { e.preventDefault(); }); }); </script>
In case the issue reappears after a theme update, just copy/paste this code into that file again.
Best,
Ernest Marcinko
If you like my products, don't forget to rate them on codecanyon :)
September 12, 2016 at 1:13 pm #10095Thank you very much! Appreciate it!
September 14, 2016 at 8:51 am #10120You cannot access this content. Best,
Ernest Marcinko
If you like my products, don't forget to rate them on codecanyon :)
- AuthorPosts
The topic ‘Plugin Looping while loading’ is closed to new replies.