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:

  • Contact Form 7
  • Gravity Form
  • WordPress comments
  • WordPress registration forms
  • WooCommerce
  • Ninja Forms
  • Jetpack/Grunion
  • 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?