Validation not work
-
Hi,
I use this code in my functions.php (code copied from your office site):function cf7_custom_form_validation($result, $tag) { $tag = new WPCF7_Shortcode($tag); if ($tag->name == 'pedidoFinal') { $leInput = isset($_POST[$tag->name]) ? trim($_POST[$tag->name]) : ''; if ($leInput != '') { $result->invalidate($tag, "Debe seleccionar por lo menos un producto."); } } return $result; } add_filter( 'wpcf7_validate_text*', 'cf7_custom_form_validation', 20, 2 );
An this shorcode:
[text* pedidoFinal id:pedidoFinal]
But didn’t show the custom message when I leave the field blank.
Viewing 10 replies - 1 through 10 (of 10 total)
Viewing 10 replies - 1 through 10 (of 10 total)
- The topic ‘Validation not work’ is closed to new replies.