How to Show SKU with product title in Order received page and Email order
问题 In functions.php add_action( 'woocommerce_add_order_item_meta', 'custom_add_item_sku', 10, 3 ); function custom_add_item_sku( $item_id, $values, $cart_item_key ) { $item_sku = get_post_meta( $values[ 'product_id' ], '_sku', true ); wc_add_order_item_meta( $item_id, 'SKU', $item_sku , false ); } But its showing SKU value below Product title but i want it like this SKU:123sd - Product Name 回答1: Update 2018-04-01 - Changing of hook and Improved code. Use woocommerce_order_item_name filter hook