Add product short description to Woocommerce admin orders preview

前端 未结 2 989
误落风尘
误落风尘 2021-01-15 02:55

I\'m trying to add my product short description into my order page as a new tab so we have an easier way to order products without having to go inside of them.

I see

2条回答
  •  花落未央
    2021-01-15 03:42

    @LoicTheAztec answer does not work for me, i modified his answer and replace the custom_admin_order_item_values function with below, then it work.

    // Custom column content in the order "line items" html table
    function custom_admin_order_item_values( $item_name, $item, $is_visible ){
        $product_id = $item->get_product_id(); // Get the product Id
        $excerpt = get_the_excerpt( $product_id ); // Get the short description
        // Output
        echo '' . $excerpt . '';
    }
    

提交回复
热议问题