对于WooCommerce结帐帐单字段,如何使该字段需要9个数字并插入破折号以正确设置电话格式?例如,它没有显示在电话号码字段中的3053453212,而是显示:(305-345-3212)
答案 0 :(得分:1)
基于“ Formatting a phone number in a form using jquery”应答代码,以下是格式化Woocommerce计费电话的方法:
add_action('wp_footer', 'format_checkout_billing_phone');
function format_checkout_billing_phone() {
if ( is_checkout() && ! is_wc_endpoint_url() ) :
?>
<script type="text/javascript">
jQuery( function($){
$('#billing_phone').on( 'input focusout', function() {
var p = $(this).val();
p = p.replace(/[^0-9]/g, '');
p = p.replace(/(\d{3})(\d{3})(\d{4})/, "$1-$2-$3");
$(this).val(p);
});
});
</script>
<?php
endif;
}
代码进入您的活动子主题(或活动主题)的function.php文件中。经过测试,可以正常工作。
答案 1 :(得分:0)
您可以尝试
/**
* Require 9 digit number. Format to 000-000-0000 at submission
* stackoverflow/54700465
*/
add_filter( 'woocommerce_billing_fields', 'wc_filter_phone', 10, 1 );
function wc_filter_phone( $address_fields ) {
$address_fields['billing_phone']['min-lenght="9"'];
$format_number = preg_replace("/^(\d{3})(\d{3})(\d{4})$/", "$1-$2-$3", $address_fields);
return $format_number;
}
// End
答案 2 :(得分:0)
另一种对我有用的方法is given here。
$_POST['billing_phone'] = preg_replace("/^(\d{3})(\d{3})(\d{4})$/", "$1-$2-$3", $number);