When SKU matters to the end user, displaying it in the Cart page, Checkout page, Thank you page, My Account View Order page and Order Emails under the item name is a must.
Ideal for B2B businesses and international brands, this simple customization can help you learn how to add any sort of content under the Cart/Checkout/Order item names. Simply use the same hook and try “getting” something different than SKU with this guide. Enjoy!
PHP Snippet: Display SKU Below Item Names @ Cart, Checkout, Order, Emails
/**
* @snippet Show SKU @ WooCommerce Cart
* @how-to Get CustomizeWoo.com FREE
* @author Rodolfo Melogli
* @testedwith WooCommerce 5
* @community https://businessbloomer.com/club/
*/
// First, let's write the function that returns a given product SKU
function bbloomer_return_sku( $product ) {
$sku = $product->get_sku();
if ( ! empty( $sku ) ) {
return '<p>SKU: ' . $sku . '</p>';
} else {
return '';
}
}
// This adds the SKU under cart/checkout item name
add_filter( 'woocommerce_cart_item_name', 'bbloomer_sku_cart_checkout_pages', 9999, 3 );
function bbloomer_sku_cart_checkout_pages( $item_name, $cart_item, $cart_item_key ) {
$product = $cart_item['data'];
$item_name .= bbloomer_return_sku( $product );
return $item_name;
}
// This adds SKU under order item table name
add_action( 'woocommerce_order_item_meta_start', 'bbloomer_sku_thankyou_order_email_pages', 9999, 4 );
function bbloomer_sku_thankyou_order_email_pages( $item_id, $item, $order, $plain_text ) {
$product = $item->get_product();
echo bbloomer_return_sku( $product );
}
How show SKU and other custom fields like: Barcode and BBE to a child product from grouped ones? At the moment natively Woo shows only to select quantity, itβs name and price. Thanks
Hello George, 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!
Hi, Rodolfo.
Thanks for your useful snippet!
Recently, I noticed that this snippet works well except broking the “view order” page in my account page. When customer click the “view” button on the “view order” page, they will see an “There has been a critical error on this websit” error message.
PS. I use Blocksy theme, WooCommerce 8.2.1, and have switched to default theme and deactivated all the other plugin to test this snippet~
Sorry about the delay. Works fine on my test website. What does the Fatal Error say?
Works perfectly for my site!
Nice!
Works like a charm! I’m using Riode Theme.
Cool
Hi, Thank you for creating a very useful snippet to add SKU on cart, checkout, email and order detail pages. It is working correctly on Cart, checkout and order details page. However in an email, it is adding SKU value two times in this format.
Product title (# SKU-value)
SKU: SKU-value
Any reason, why is it adding the value of SKU two times in an order confirmation email?
Hi Manish, thanks for that! Do you use any email customizer plugin? If not, could you send me a screenshot?
Same here! screenshot: https://i.imgur.com/NBUQXFB.png
Thank you. Try adding this as well:
I’ve got the same problem, but than on the Cart page. So the SKU is after the title and also in a new paragraph.
Try with:
Hi there! Iβve got the same problem on the Cart page. The SKU is appearing in the title (inside the clickable link) and also in a new paragraph (without link).
You can check this error here: https://prnt.sc/TOS03qs0sdyE
I’ve tried to replace the “bbloomer_sku_cart_checkout_pages” function with the one you recommended above:
And after this, the SKU’s at the cart aren’t appearing anymore, and instead the products received an “1” entry inside the title, and an “1” outside the title.
You can check this new error here: https://prnt.sc/6_MMIEJ36Hc5
Can you help me?
Try with:
Hey!
I’ve tried with this new change, and the “11” glitch is gone, but the SKU isn’t appearing too.
Can you help me?
Not 100% sure, must be your theme?
It’s adding empty code after SKU code.
Weird, screenshot please?
Hi is there any way to add a SKU on a email quote.
Hi Kyle, what do you mean by “email quote”?
Not working for me π – using Avada theme…
Not working anywhere? Avada may be customizing WooCommerce templates/function so it may need further customization
Hello, has this issue been fixed for the Avada theme?
Hi Drew, thanks so much for your comment! I’m afraid this is custom work. If you’d like to get a quote, feel free to contact me here. Thanks a lot for your understanding!
It still works and it looks really nice. What about the checkout page (order summary)?
Should work there too out of the box
Yes it still works (2021). Works on the cart page/checkout but not on mini cart.
Cool! The mini cart will require an additional piece of code