将SKU添加到Woocommerce中我的帐户订单查看页面上的订单商品

时间:2018-11-06 16:50:54

标签: php wordpress woocommerce orders sku

在Woocommerce中,我正在MyAccount中自定义视图顺序。我已经使用以下答案代码添加了产品图片:Add the product image to Woocommerce my account order view

现在,我想将产品SKU添加到“查看订单”页面,但我不知道如何获取它。

有人有主意吗?

1 个答案:

答案 0 :(得分:0)

以此替换代码以显示产品sku以订购商品

// Display the product thumbnail in order view pages
add_filter( 'woocommerce_order_item_name', 'display_product_image_in_order_item', 20, 3 );
function display_product_image_in_order_item( $item_name, $item, $is_visible ) {
    // Targeting view order pages only
    if( is_wc_endpoint_url( 'view-order' ) ) {
        $product   = $item->get_product(); // Get the WC_Product object (from order item)
        $thumbnail = $product->get_image(array( 36, 36)); // Get the product thumbnail (from product object)
        // The thumbnail
        if( $product->get_image_id() > 0 )
            $item_name = '<div class="item-thumbnail">' . $thumbnail . '</div>' . $item_name;
        // The SKU
        if( $sku = $product->get_sku() )
            $item_name .= '<br><div class="product-sku">' . $sku . '</div>';
    }
    return $item_name;
}

代码进入您的活动子主题(活动主题)的function.php文件中。应该可以。