Skip to content
add_action('wp_footer', function() {
?>
document.addEventListener("DOMContentLoaded", function(){
let phone = document.querySelector("#billing_phone");
if(phone){
phone.setAttribute("maxlength","10");
phone.oninput = function() {
this.value = this.value.replace(/[^0-9]/g,'');
}
}
});