Skip to content

Instantly share code, notes, and snippets.

'attributes' => array(
array(
'name' => 'Brand',
'slug' => 'pa_brand',
'options' => array(
'Kravet Basics'
),
'visible' => true
)
)
@ChromeOrange
ChromeOrange / gist:3905785
Created October 17, 2012 14:24 — forked from mikejolley/gist:1604009
WooCommerce - Add a checkbox to the checkout, order emails and order meta
/**
* 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"><h3>'.__('My Field').'</h3>';
woocommerce_form_field( 'my_field_name', array(
'type' => 'checkbox',