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.