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
| // Hook in | |
| add_filter( 'woocommerce_checkout_fields' , 'custom_override_checkout_fields' ); | |
| // Our hooked in function - $fields is passed via the filter! | |
| function custom_override_checkout_fields( $fields ) { | |
| $fields['shipping']['shipping_phone'] = array( | |
| 'label' => __('Phone', 'woocommerce'), | |
| 'placeholder' => _x('Phone', 'placeholder', 'woocommerce'), | |
| 'required' => false, | |
| 'class' => array('form-row-wide'), |