Hi All, I noticed that the required on “phonetext” field is not properly working, by default it has a value of +1. Here’s my TEMPORARY fix:
Add the following code to your custom js file.
$('input.wpcf7-phonetext').val("");
Or add this to your functions.php file
function remove_phonetext_value(){ ?>
<script type="text/javascript">
(function($) {
$(function() {
$('input.wpcf7-phonetext').val("");
});
})(jQuery);
</script>
<?php }
add_action('wp_footer', 'remove_phonetext_value');