Disable autocomplete billing phone field on checkout in WooCommerce on child sites.
Snippet Type
Execute on Child Sites
Snippet
add_filter( 'woocommerce_checkout_fields', 'wc_disable_autocomplete_checkout_fields' );
function wc_disable_autocomplete_checkout_fields( $fields ) {
$fields['billing']['billing_phone']['autocomplete'] = false;
return $fields;
}