使用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;
}
但是,我想删除产品名称,但我不知道要编写的代码来执行此操作。请帮忙吗?
你
只需要在代码中用$item_name =
替换$item_name .=
,比如:
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;
}
代码进入函数.php活动子主题(或活动主题(的文件。它应该有效。