Hello @pawsitforward,
Our team went ahead and made a quick snippet that should disable the on click Enter Submission on the form. Here is the code:
add_action( 'wp_footer', function(){
?>
<script>
(function($){
$(function(){
$(window).on('load', function(){
let list_form_ids = [],
_forms,
_entering = 0;
if( list_form_ids.length ){
_forms = $('#forminator-module-'+ list_form_ids.join(',#forminator-module-'));
}else{
_forms = $('.forminator-custom-form');
}
if( _forms.length ){
_forms.find('.forminator-button-submit').on('click', function(e){
_entering = 0;
e.preventDefault();
let _form = $(this).closest('form');
setTimeout(function(){
if( ! _entering ){
_form.trigger('submit');
}
}, 500);
});
_forms.find('.forminator-input, .forminator-textarea').off('keydown keyup');
_forms.on('keyup', 'input', function(e){
let _keycode = e.which || e.keyCode;
if( 13 === _keycode ){
_entering = 1;
}
return;
});
}
});
});
})(window.jQuery);
</script>
<?php
}, 21 );
Now you can also install it as a mu-plugin if you like. Here is how you can install it like a mu-plugin:
https://wpmudev.com/docs/using-wordpress/installing-wordpress-plugins/#installing-mu-plugins
Let me know if that works for you.
Thank you,
Prathamesh Palve