subscribe
Sign up for updates on AIDesignMockups product launches, specials and general updates.
This plugin helps ensure users enter their email address correctly by requiring them to type it twice.
Plugin created 2025.06.19
1 — Add plugin to WordPress Plugins.
2 — Activate the Plugin:
3 — Modify Your Contact Form 7 Form:
IMPORTANT
your-email
and the other is your-email-confirm
.IMPORTANT. YOU MUST USE EXACTLY THESE SETTINGS IN THE FORM
Example Form Fields (in the “Form” tab):
HTML:—
<label> Your Email (required)
[email* your-email] </label>
<label> Confirm Email (required)
[email* your-email-confirm] </label>
[submit “Send”]
Important: Make sure your [email]
fields are named your-email
and your-email-confirm
exactly.
4 — Customize the Validation Message (Optional): If you want to change the “Email fields do not match.” message, you can add and edit the following code to your theme’s functions.php
file:
PHP
add_filter( 'cf7_duplicate_email_validation_message', 'my_custom_cf7_email_message' );
function my_custom_cf7_email_message() {
return 'Oops! Your email addresses don\'t match. Please try again.';
Below is an example of the email input mismatch error message
wp-content/plugins/
called cf7-duplicate-email
.cf7-duplicate-email.php
.cf7-duplicate-email.php
file.Activate the Plugin:
Modify Your Contact Form 7 Form:
your-email
(or whatever you set as the primary email in the PHP code) and the other is your-email-confirm
.Sign up for updates on AIDesignMockups product launches, specials and general updates.