Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save MinaPansuriya/2a500cf26f4a56759fd771e82dbefd62 to your computer and use it in GitHub Desktop.
Save MinaPansuriya/2a500cf26f4a56759fd771e82dbefd62 to your computer and use it in GitHub Desktop.
/**
* @Title: WooCommerce Edit Checkout Billing Address fields
* @Author: Mina Pansuriya
* @Website: http://minapansuriya.com
*/
add_filter( 'woocommerce_checkout_fields' , 'pbs_woo_customize_checkout_billing_address_fields' );
function pbs_woo_customize_checkout_billing_address_fields( $fields ) {
// Remove Billing Company Field
unset($fields['billing']['billing_company']);
// Rename Label of for Order Comments
$fields['order']['order_comments']['label'] = 'Personalized Message';
// Change Placeholder text of Order Comments
$fields['order']['order_comments']['placeholder'] = 'Add message here';
// Make postcode non-required fieid
$fields['billing']["billing_postcode"]['required'] = false;
// Remove Billing Address 2 field
unset($fields['billing']['billing_address_2']);
return $fields;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment