Hello,
You can try this javascript snippet:
// Prevent multiple submissions with Contact Form 7
jQuery(document).on('click', '.wpcf7-submit', function(e){
if( jQuery(this).siblings('.ajax-loader').hasClass('is-active') ) {
e.preventDefault();
return false;
}
});
Regards,
Raúl.
-
This reply was modified 7 years, 2 months ago by raulvelasco.