Skip to content

Instantly share code, notes, and snippets.

@ensostyle
ensostyle / gist:972eb330be3e9fa5bff5800fa5f7e627
Created September 7, 2018 18:33 — forked from mikejolley/gist:1604009
WooCommerce - Add a special field to the checkout, order emails and user/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>';
/**