使用Woocommerce,我想在我的帐户/ my-account / view-order / [orderid] /的订单视图页面中添加SKU而不是产品名称。
我可以使用以下代码添加带有链接的SKU。SKU显示在同一行上产品名称的后面。
add_filter( 'woocommerce_order_item_name', 'display_sku_in_order_item', 20, 3 );
function display_sku_in_order_item( $item_name, $item, $is_visible ) {
if( is_wc_endpoint_url( 'view-order' ) ) {
$product = $item->get_product();
if( $sku = $product->get_sku() )
$item_name .= '<a href="' . $product->get_permalink() . '" class="product-sku">' . __( "Product ", "woocommerce") . $sku . '</a>';
}
return $item_name;
}
但是,我想删除产品名称,但是我不知道要编写的代码来执行此操作。有什么帮助吗?