Created
July 24, 2012 16:28
-
-
Save thegdshop/3171026 to your computer and use it in GitHub Desktop.
WooCommerce - Add checkbox field to the checkout
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
<?php | |
/** | |
* Add checkbox field to the checkout | |
**/ | |
add_action('woocommerce_after_order_notes', 'my_custom_checkout_field'); | |
function my_custom_checkout_field( $checkout ) { | |
echo '<div id="my-new-field"><h3>'.__('My Checkbox: ').'</h3>'; | |
woocommerce_form_field( 'my_checkbox', array( | |
'type' => 'checkbox', | |
'class' => array('input-checkbox'), | |
'label' => __('I have read and agreed.'), | |
'required' => true, | |
), $checkout->get_value( 'my_checkbox' )); | |
echo '</div>'; | |
} | |
/** | |
* Process the checkout | |
**/ | |
add_action('woocommerce_checkout_process', 'my_custom_checkout_field_process'); | |
function my_custom_checkout_field_process() { | |
global $woocommerce; | |
// Check if set, if its not set add an error. | |
if (!$_POST['my_checkbox']) | |
$woocommerce->add_error( __('Please agree to my checkbox.') ); | |
} | |
/** | |
* Update the order meta with field value | |
**/ | |
add_action('woocommerce_checkout_update_order_meta', 'my_custom_checkout_field_update_order_meta'); | |
function my_custom_checkout_field_update_order_meta( $order_id ) { | |
if ($_POST['my_checkbox']) update_post_meta( $order_id, 'My Checkbox', esc_attr($_POST['my_checkbox'])); | |
} | |
?> |
For those of you getting the error with get_value on an array -- use WC_Checkout::get_value instead
Working fine for checkbox, Thanks for the resource.
Hello,
works perfectly, thank you very much!
However, could you help me adapt this code to put the checkout in two more languages? I am using WPML.
Thanks again.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi,
I get this Warning above the Place Order button just for a few seconds when the Checkout page is loading and then the warning disappear.
What can I do to fix this issue?
Thank you for your help!