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

Plugin Looping while loading

Home Forums Product Support Forums Ajax Search Pro for WordPress Support Plugin Looping while loading

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #10067
    dmarkodmarko
    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 MarcinkoErnest 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:

    [html]<script>
    jQuery(function($){
    $(".proinput input").on("click", function(e) {
    e.preventDefault();
    });
    });
    </script>[/html]

    In case the issue reappears after a theme update, just copy/paste this code into that file again.

    #10095
    dmarkodmarko
    Participant

    Thank you very much! Appreciate it!

    #10120
    Ernest MarcinkoErnest Marcinko
    Keymaster

    You cannot access this content.

Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘Plugin Looping while loading’ is closed to new replies.