Hide billing address from checkout page but keep the information
I want to hide the billing address from the checkout page (not remove it) and make the billing address set for the first time when registered? To allow display on the bill .pdf I add this code: <?php add_filter( 'woocommerce_checkout_fields' , 'custom_override_checkout_fields' ); function custom_override_checkout_fields( $fields ) { unset($fields['billing']['billing_first_name']); unset($fields['billing']['billing_last_name']); unset($fields['billing']['billing_company']); unset($fields['billing']['billing_address_1']); unset($fields['billing']['billing_address_2']); unset($fields['billing'][