For tracking purposes, or maybe because your shop manager needs to be aware of this, saving the total weight of each order and displaying it on the single order admin page is quite simple.
That’s right – WooCommerce does not save this value by default. You either need to save it yourself into the “order meta” or recalculate the weight based on the order items and their quantities. Here, we’ll cover option one (saving is better than calculating in regard to performance).
Enjoy π

PHP Snippet: Save Order Weight & Display It @ WooCommerce Order Admin
/**
* @snippet Save & Display Order Total Weight - WooCommerce Order
* @how-to businessbloomer.com/woocommerce-customization
* @author Rodolfo Melogli, Business Bloomer
* @compatible WooCommerce 7
* @community https://businessbloomer.com/club/
*/
add_action( 'woocommerce_checkout_update_order_meta', 'bbloomer_save_weight_order' );
function bbloomer_save_weight_order( $order_id ) {
$weight = WC()->cart->get_cart_contents_weight();
update_post_meta( $order_id, '_cart_weight', $weight );
}
add_action( 'woocommerce_admin_order_data_after_billing_address', 'bbloomer_delivery_weight_display_admin_order_meta', 10, 1 );
function bbloomer_delivery_weight_display_admin_order_meta( $order ) {
echo '<p><strong>Order Weight:</strong> ' . get_post_meta( $order->get_id(), '_cart_weight', true ) . get_option( 'woocommerce_weight_unit' ) . '</p>';
}
Dosen’t work with the new standard Woocommerce Gutenberg checkout blocks – no weight is saved to orders when using them
Still works with the old checkout-system added through shortcodes.
Welcome to the world of non-customizable Checkout Block!
Change the action from woocommerce_checkout_update_order_meta to woocommerce_store_api_checkout_update_order_meta. The latter is HPOS compatible.
Interesting, thank you
This code no longer works. It displays “Order Weight: lbs”, but no number. π
Hey Daniel, thanks so much for your comment! I just retested this on the latest version of WooCommerce and it still works. Unfortunately this looks like custom troubleshooting work and I cannot help here via the blog comments. If you’d like to get a quote, feel free to contact me here. Thanks a lot for your understanding! ~R
D’oh!
Would this might be the issue?
I added the snippet to code snippets, and then I had it set to “Only run in administration area”.
Maybe the “woocommerce_checkout_update_order_meta” runs on front-end?
Could be, yes, give it a go!
Hi! Is there a way to show this information on the Order tab of the Account Frontend?
Thanks!
Hi Claudio, thanks so much for your comment! Yes, this is definitely possible, but I’m afraid it’s custom work. If you’d like to get a quote, feel free to contact me here. Thanks a lot for your understanding!
Hello, I tested your code and it works fine. but it is possible to display the total sales by weight in the form of a report, in tonnes for example. ex: product1 = 1000 tonnes or by product category. ex: cat1 = 500 tonnes
Hi Zambol thanks so much for your comment! Yes, this is definitely possible, but I’m afraid it’s custom work. If you’d like to get a quote, feel free to contact me here. Thanks a lot for your understanding!
Hello and many thanks for this snippet !
I added this code and it works really good , but only in the orders coming from the front end.
When i manually add an order from the admin area , the order weight is not being updated π
Any ideas why?
Many thanks
No idea sorry, you probably need to slightly edit the code
Hi Rodolfo,
I use this code and work really well.
But Now I m using the follow code to resolve a big delay of Webhooks in WooCommerce. when I use this code the Webhooks work really fast but Your code is ignored
add_filter( ‘woocommerce_webhook_deliver_async’, ‘__return_false’ );
Not sure Edoardo!
hi Rodolfo,
Thanks for this handy snippet of code. I will give it a shot to check if it works with new orders. MEanwhile i have a question and that is can we include the order weight in the new order emails which is sent to the admin. Please comment.
Hello Abhinav, thanks so much for your comment! Yes, this is definitely possible, but I’m afraid it’s custom work. If you’d like to get a quote, feel free to contact me here. Thanks a lot for your understanding!
Hello
I tried but the problem is that code does not show value (Order Weight: kg). How can I fix that? Maybe there is a problem with code on WordPress 5.3.2
This will only work for NEW orders and also if ALL products in the order have weight – let me know
Hello,
Is there a way to show variation weight or variation description on individual order-item-line? So, not the total weight, just individual!!
Hope you`ll help
Hi Perusi, thanks so much for your comment! Yes, this is definitely possible, but I’m afraid it’s custom work. If you’d like to get a quote, feel free to contact me here. Thanks a lot for your understanding!
Ohhh I forgot the php tags π And I can’t edit — Sorry!
Added them for you π Yes, this is definitely possible, but I’m afraid it’s custom work. If you’d like to get a quote, feel free to contact me here. Thanks a lot for your understanding!
Hi Rodolfo,
Thanks for this…
I already have 2 of them in my functions.php π One to show on the “orders overview” page and one inside the order and print it on the order email – that is on my table when I am doing / packing and printing the Shipment label
Any chance it can be combined into one – to rule them all?
Here is the two snippets
And the second Snippet (If I add yours to the buttom of this … The site crashes? π
Do you think this would be better transferred to the order details and to the print order or packing list.
If for example, the shipping does not have access to the woocommerce backend.
Hey Roberta, yes, you can display it wherever you like – just change hook π