Remove company name from woocommerce checkout field.

August 18th, 2019 Shabu James 1.5K Views 0 Uncategorised28 seconds

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;
}

About The Author

Shabu James

Leave Your Thoughts Here...

We are glad you have chosen to leave a comment. Please keep in mind that comments are moderated according to our comment policy.

Name *
Comment

We are glad you have chosen to leave a comment. Please keep in mind that comments are moderated according to our comment policy.