DigitalRefresh
8/7/2018 - 10:22 PM

Checkout: Remove Fields #woo #hide

// Remove WooCommerce Checkout Fields
add_filter( 'woocommerce_checkout_fields' , 'remove_checkout_fields' );

function remove_checkout_fields( $fields ) {
\!h     unset($fields['__Billing__']['__billing_phone__']);  //See Cacher DB "Woo Checkout Fields & Arrays" for a full list of options
                  
     return $fields;
}