Skip to content

Instantly share code, notes, and snippets.

@karamansky
Forked from mommaroodles/functions.php
Created January 11, 2021 18:55
Show Gist options
  • Save karamansky/e3b3077e2a3bc4f77a910085fdfd26d0 to your computer and use it in GitHub Desktop.
Save karamansky/e3b3077e2a3bc4f77a910085fdfd26d0 to your computer and use it in GitHub Desktop.
Woocommerce: Remove Company Input Field in Checkout Page
<?php
add_filter( 'woocommerce_checkout_fields' , 'custom_override_checkout_fields' );
function custom_override_checkout_fields( $fields ) {
unset($fields['billing']['billing_company']);
return $fields;
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment