Rating: 5 stars
Awesome
]]>Rating: 4 stars
Validating at the end doesn’t work well if using a multi-step process for the checkout which is common these days.
]]>Rating: 5 stars
I edited the WooCommerce checkout fields using my theme’s functions.php file.
I added this plugin for email verification, and edited it very slightly.
It works a charm!
thanks.
]]>Rating: 5 stars
It’s not compatible with wordpress version 4.7.3 and woocommerce 3…Keep Giving the error “Email addresses do not match!” in checkout page. Needs to be released a new update.
]]>Rating: 5 stars
Does the job in an instance.
]]>Rating: 5 stars
No frills, does as needed. Real-time validation would be nice but maybe not worth the overhead. Should really be core.
]]>Rating: 4 stars
Because of the lack of recent updates (last one was over 9 months ago), email confirmation field is in the wrong place. Woocommerce move it up, but this plugin never updated it.
The solution is to add this code to the functions.php of your child theme:
//RE-ORDER BILLING FIELDS WITH EMAIL VALIDATION
add_filter("woocommerce_checkout_fields", "order_fields");
function order_fields($fields) {
$order = array(
"billing_country",
"billing_first_name",
"billing_last_name",
"billing_company",
"billing_address_1",
"billing_address_2",
"billing_city",
"billing_state",
"billing_postcode",
"billing_email",
"billing_email-2",
"billing_phone"
);
foreach($order as $field)
{
$ordered_fields[$field] = $fields["billing"][$field];
}
$fields["billing"] = $ordered_fields;
return $fields;
}
]]>
Rating: 5 stars
Just wanted to thank the author for making this useful plugin. It’s stressful when a client wants something last minute and you know you might have to develop it yourself and do a bunch of testing.
Thanks to this plugin I didn’t have to. Also the snippet to re-order the fields worked out perfectly and better yet added to a child theme instead of overriding a core file.
If this helps, here’s how to get the e-mail verification field right under the regular e-mail field (add to functions.php, for me I did it in my child theme):
//RE-ORDER BILLING FIELDS WITH EMAIL VALIDATION
add_filter("woocommerce_checkout_fields", "order_fields");
function order_fields($fields) {
$order = array(
"billing_first_name",
"billing_last_name",
"billing_company",
"billing_address_1",
"billing_address_2",
"billing_city",
"billing_state",
"billing_postcode",
"billing_country",
"billing_email",
"billing_email-2",
"billing_phone"
);
foreach($order as $field)
{
$ordered_fields[$field] = $fields["billing"][$field];
}
$fields["billing"] = $ordered_fields;
return $fields;
}
]]>
Rating: 5 stars
Thank you so much. This is exactly what I need and super simple.
]]>Rating: 5 stars
Very useful and works perfectly.
]]>Rating: 5 stars
I hate adding extra steps for customers and avoid doing so at all costs, but this one has actually come in really handy.
The plugin works and it does the one thing you want it to. 5/5 stars.
]]>Rating: 5 stars
Its rare to find something free that is quality and “just works”, this is one of those rare finds for WooCommerce thats so simple to use and so helpful when activated.
]]>Rating: 5 stars
Works well and multi lang support!
]]>Rating: 5 stars
It saved my few minutes. Thanks.
]]>Rating: 5 stars
Installed with WooCommerce 2.0.4 and WP 3.5.1 and works just as described on the tin.
Should cut down on pesky clients who can’t type and then complain they never received an email.
In use on https://lcwoodpellets.com/
Thanks
Rating: 5 stars
while verification the email sent as [email protected]
]]>Rating: 5 stars
Works well on my Woocommerce check-out page. And when I needed advice on styling, the author gave a quick and helpful response even though it’s FREE!! Thank you!!!
]]>Rating: 5 stars
Simple and useful plugin to prevent errors at Woocommerce checkout.
Furthermore, Hugh, the author, is very kind at support.
Rating: 5 stars
Worked on latest WooCommerce and 3.5.1 WP
Appeared in checkout area.