-
-
Save bobwol/aac14d55b3cb004393a42d6a0f5f18b3 to your computer and use it in GitHub Desktop.
[Customizing checkout fields using actions and filters] Add a custom checkout field to WooCommerce.
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
| /** | |
| * Add the field to the checkout | |
| */ | |
| add_action( 'woocommerce_after_order_notes', 'my_custom_checkout_field' ); | |
| function my_custom_checkout_field( $checkout ) { | |
| echo '<div id="my_custom_checkout_field"><h2>' . __('My Field') . '</h2>'; | |
| woocommerce_form_field( 'my_field_name', array( | |
| 'type' => 'text', | |
| 'class' => array('my-field-class form-row-wide'), | |
| 'label' => __('Fill in this field'), | |
| 'placeholder' => __('Enter something'), | |
| ), $checkout->get_value( 'my_field_name' )); | |
| echo '</div>'; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment