woocommerce edit custom fields on order page code example
Example 1: Woocommerce Display field value on the admin order edit page [Custom Field Display 2]
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>'.__('Store Location').':</strong> ' . get_post_meta( $order->id, 'My Field', true ) . '</p>';
}
Example 2: Woocommerce Update the Order meta with Custom Field value [Custom Field Display 1]
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['store_location'] ) ) {
update_post_meta( $order_id, 'My Field', sanitize_text_field( $_POST['store_location'] ) );
}
}