程式碼:
// Disable automatic billing information fill
add_filter( ‘woocommerce_checkout_get_value’, ‘disable_autofill_billing_info’, 10, 2 );
function disable_autofill_billing_info( $value, $input ) {
if ( strpos( $input, ‘billing_’ ) !== false ) {
$value = ”;
}
return $value;
}