-
-
Save niamrox/32a869041e306f8ef86f5ebbadbbc1f0 to your computer and use it in GitHub Desktop.
WooCommerce - Override billing fields
This file contains 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
add_filter( 'woocommerce_billing_fields', 'custom_woocommerce_billing_fields' ); | |
function custom_woocommerce_billing_fields( $fields ) { | |
// Over-ride a single label | |
$fields['billing_first_name']['label'] = 'Your label'; | |
// Over-ride a single required value | |
$fields['billing_first_name']['required'] = false; | |
// Over-ride the entire thing | |
$fields['billing_postcode'] = array( | |
'label' => __('Postcode', 'woothemes'), | |
'placeholder' => __('Postcode', 'woothemes'), | |
'required' => true, | |
'class' => array('form-row-last update_totals_on_change') | |
); | |
/** | |
* You can over-ride - billing_first_name, billing_last_name, billing_company, billing_address_1, billing_address_2, billing_city, billing_postcode, billing_country, billing_state, billing_email, billing_phone | |
*/ | |
return $fields; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment