Plugin Looping while loading

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 Ernest Marcinko 7 years, 2 months ago.

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #10067
    dmarko
    dmarko
    Participant

    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

    #10084
    Ernest Marcinko
    Ernest Marcinko
    Keymaster

    Hi,

    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 :)


    #10095
    dmarko
    dmarko
    Participant

    Thank you very much! Appreciate it!

    #10120
    Ernest Marcinko
    Ernest Marcinko
    Keymaster
    You cannot access this content. Best,
    Ernest Marcinko

    If you like my products, don't forget to rate them on codecanyon :)


Viewing 4 posts - 1 through 4 (of 4 total)

The topic ‘Plugin Looping while loading’ is closed to new replies.