Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- add_filter( 'woocommerce_checkout_fields' , 'bbloomer_simplify_checkout_virtual' );
- function bbloomer_simplify_checkout_virtual( $fields ) {
- if( is_admin() ) {
- return $fields;
- }
- $only_virtual = true;
- foreach( WC()->cart->get_cart() as $cart_item_key => $cart_item ) {
- // Check if there are non-virtual products
- if ( ! $cart_item['data']->is_virtual() ) $only_virtual = false;
- }
- if( $only_virtual ) {
- unset($fields['billing']['billing_company']);
- unset($fields['billing']['billing_address_1']);
- unset($fields['billing']['billing_address_2']);
- unset($fields['billing']['billing_city']);
- unset($fields['billing']['billing_postcode']);
- unset($fields['billing']['billing_country']);
- unset($fields['billing']['billing_state']);
- unset($fields['billing']['billing_phone']);
- add_filter( 'woocommerce_enable_order_notes_field', '__return_false' );
- }
- return $fields;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement