Code-Snippets-Functions/Execute a function on a child site/WooCommerce/disable-checkout-field-autocomplete.txt

6 lines
241 B
Text

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;
}