Adding product SKU before cart item name in WooCommerce
You just need to change a bit your code this way, to get the SKU before the product name: function show_sku_in_cart_items( $item_name, $cart_item, $cart_item_key ) { // The WC_Product object $product = $cart_item[‘data’]; // Get the SKU $sku = $product->get_sku(); // When SKU doesn’t exist if ( empty( $sku ) ) return $item_name; // Add … Read more