Skip to content

Instantly share code, notes, and snippets.

@mikejolley
Created April 4, 2014 09:25
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mikejolley/9971132 to your computer and use it in GitHub Desktop.
Save mikejolley/9971132 to your computer and use it in GitHub Desktop.
WC customising checkout fields using actions and filters - Lesson 3 snippet 3
/**
* 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 ( ! empty( $_POST['my_field_name'] ) ) {
update_post_meta( $order_id, 'My Field', sanitize_text_field( $_POST['my_field_name'] ) );
}
}
@helgatheviking
Copy link

Suggestion for WC3.0+

/**
 * Update the order meta with field value
 */
add_action( 'woocommerce_checkout_create_order', 'my_custom_checkout_field_update_order_meta' );

function my_custom_checkout_field_update_order_meta( $order ) {
    if ( ! empty( $_POST['my_field_name'] ) ) {
        $order->update_meta_data( '_my_field', sanitize_text_field( $_POST['my_field_name'] ) );
    }
}

@robertox85
Copy link

I noticed that the fields are saved even without this code. Is there something I'm doing wrong?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment