使用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;
}
但是,我想删除产品名称,但是我不知道编写代码的方式。有什么帮助吗?
答案 0 :(得分:1)
您只需在代码中将$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;
}
代码进入您的活动子主题(或活动主题)的function.php文件中。应该可以。