Reply To: Can't fill contact form inputs when fixed search is added to the site

Home Forums Product Support Forums Ajax Search Pro for WordPress Support Can't fill contact form inputs when fixed search is added to the site Reply To: Can't fill contact form inputs when fixed search is added to the site

#7734
Ernest Marcinko
Ernest Marcinko
Keymaster

Indeed, there is some connection, I was able to re-create the problem on my test environment with similar fields. I will have to investigate this further to find what is exactly causing it to fix it before the upcoming release.

Until then, I have found a temporary solution, which might work for you as well. Put this script into the footer.php file of your current theme:


<script>
jQuery(function($){
   $("._full_width input").click(function(e){ e.preventDefault();
       e.stopPropagation();
       e.stopImmediatePropagation();
   });
}); 
</script>

This should prevent any click related events on the contact form.

Best,
Ernest Marcinko

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