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
| <?php | |
| // Filter the checkout fields | |
| add_filter( 'woocommerce_checkout_fields', 'patricks_woocommerce_checkout_fields' ); | |
| // Remove the billing phone - $fields is passed via the filter | |
| function patricks_woocommerce_checkout_fields( $fields ) { | |
| // remove the phone field | |
| unset($fields['billing']['billing_phone']); | |
| // make the billing email field fill up the entire space |