Skip to content

Instantly share code, notes, and snippets.

@cryptexvinci
Last active March 3, 2024 00:43
Show Gist options
  • Star 35 You must be signed in to star a gist
  • Fork 28 You must be signed in to fork a gist
  • Save cryptexvinci/75ba823a824b29e04a08ee7893fc0ee5 to your computer and use it in GitHub Desktop.
Save cryptexvinci/75ba823a824b29e04a08ee7893fc0ee5 to your computer and use it in GitHub Desktop.
Remove fields from WooCommerce checkout page.
<?php
add_filter( 'woocommerce_checkout_fields' , 'custom_remove_woo_checkout_fields' );
function custom_remove_woo_checkout_fields( $fields ) {
// remove billing 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']['billing_city']);
unset($fields['billing']['billing_postcode']);
unset($fields['billing']['billing_country']);
unset($fields['billing']['billing_state']);
unset($fields['billing']['billing_phone']);
unset($fields['billing']['billing_email']);
// remove shipping fields
unset($fields['shipping']['shipping_first_name']);
unset($fields['shipping']['shipping_last_name']);
unset($fields['shipping']['shipping_company']);
unset($fields['shipping']['shipping_address_1']);
unset($fields['shipping']['shipping_address_2']);
unset($fields['shipping']['shipping_city']);
unset($fields['shipping']['shipping_postcode']);
unset($fields['shipping']['shipping_country']);
unset($fields['shipping']['shipping_state']);
// remove order comment fields
unset($fields['order']['order_comments']);
return $fields;
}
@adoWEB-code
Copy link

hello, i understand how to remove some fields, but please tell, where to save this document in which directory off wordpress ( in filezilla)
thank you

@samediamba
Copy link

@adoWEB-code
Copy link

adoWEB-code commented Oct 6, 2019 via email

@babakfp
Copy link

babakfp commented Dec 1, 2019

Thanks a lot.

@aramgh
Copy link

aramgh commented Mar 7, 2020

the country field is required. Do not unset country otherwise it will not work
I have unset country and couldn't understand why it's not working :D

Thank you all

@Geethajillu
Copy link

Thank you...

@brianpando
Copy link

thanks

@babakfp
Copy link

babakfp commented Jun 16, 2020

the country field is required. Do not unset country otherwise it will not work
I have unset country and couldn't understand why it's not working :D

Thank you all

It works for me, with or without country field.

@rodrigoslayertech
Copy link

@adoWEB-code https://www.templatemonster.com/help/woocommerce-how-to-remove-checkout-fields.html

It's placed in your theme's functions file

Or the plugin Snippets

@DaddioD
Copy link

DaddioD commented Jun 9, 2022

When all fields are unset, the paypal paymentvtype does not work for logged in users. It ops the paypal login page then immediately closes it. Some of the paypal javascript does not work either. Help

@billaarif
Copy link

Thank You Bro

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment