Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save bobwol/ca906771e7bd83f3377475baa9743118 to your computer and use it in GitHub Desktop.
Save bobwol/ca906771e7bd83f3377475baa9743118 to your computer and use it in GitHub Desktop.
[Customizing checkout fields using actions and filters] Display WooCommerce custom checkout field admin order page.
/**
* Display field value on the order edit page
*/
add_action( 'woocommerce_admin_order_data_after_billing_address', 'my_custom_checkout_field_display_admin_order_meta', 10, 1 );
function my_custom_checkout_field_display_admin_order_meta($order){
echo '<p><strong>'.__('My Field').':</strong> ' . get_post_meta( $order->id, 'My Field', true ) . '</p>';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment