Supported Forms/Plugins

Native Integration

The plugin enhances the is_email() function of WordPress and easily integrates with it. Alongside supporting all plugins use is_email() function, DeBounce plugin works perfectly with:

  • WooCommerce
  • Contact Form 7
  • Gravity Forms
  • Ninja Forms
  • WPForms
  • WSForm
  • Forminator
  • Formidable Forms
  • Elementor Form (Contact Form by Elementor)
  • Fluent Forms
  • Jetpack Forms
  • WordPress Comments
  • WordPress Registration Forms
  • and with any other form that uses the is_email() function (no changes required).

The plugin can also be integrated into 3rd party forms that do not use the is_email() function.

Not Above Listed Plugins

To use the email validation in 3rd party forms that are not listed above and are not using the is_email() function, add the “debounce-mail” class to those inputs of the form that you want to validate.

Then, add the following code to the functions.php of your child theme:

if ( function_exists( 'debounce_activate_third_party' ) ) {
	debounce_activate_third_party();
}

Was this helpful?