使用我的帐户视图订单页面中的Sku替换产品名称

问题描述 投票:1回答:1

使用Woocommerce,我想在My Account / 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;
}

但是,我想删除产品名称,但我不知道要执行此操作的代码。有什么帮助吗?

php wordpress woocommerce orders sku
1个回答
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文件中。它应该工作。

© www.soinside.com 2019 - 2024. All rights reserved.