Here is the code for removing company name field from woocommerce check out page for removing it from checkout of woocommerce please place the following code in currently active wordpress themes function.php file.

add_filter( 'woocommerce_checkout_fields' , 'rjs_remove_checkout_fields' );
function rjs_remove_checkout_fields( $fields ) {
     unset($fields['billing']['billing_company']);

     return $fields;
}

You may also like...

Leave a Reply

Your email address will not be published. Required fields are marked *