Created
November 5, 2016 16:52
-
-
Save MinaPansuriya/2a500cf26f4a56759fd771e82dbefd62 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* @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