在WooCommerce商店,购物车和结帐页面中用SKU替换产品标题

使用Woocommerce,我想在以下页面中添加SKU而不是产品标题:“商店”页面,“购物车”页面和“结帐”页面。


例如在商店页面中,我可以使用以下代码在产品标题上方添加SKU。但是,问题在于添加的SKU没有指向单个产品页面的链接。


add_action( 'woocommerce_shop_loop_item_title', 'sku_before_title', 9 );

function sku_before_title()  {


    global $product;


    $sku = $product->get_sku();

    echo '<p class="name product-title">Product ' . $sku . '</p>';

}

用SKU代替产品标题并保持与产品标题相同的链接和CSS的正确代码是什么?“商店”页面,“购物车”页面和“结帐”页面的代码。


慕姐8265434
浏览 176回答 1
1回答

慕尼黑的夜晚无繁华

要在WooCommerce存档页面上用sku替换产品标题,您将使用:// Frontend: On shop and archives pagesadd_action( 'woocommerce_shop_loop_item_title', 'sku_replace_title_on_loop', 9 );function sku_replace_title_on_loop()&nbsp; {&nbsp; &nbsp; global $product;&nbsp; &nbsp; // Remove the product title&nbsp; &nbsp; remove_action( 'woocommerce_shop_loop_item_title', 'woocommerce_template_loop_product_title', 10 );&nbsp; &nbsp; $sku = $product->get_sku();&nbsp; &nbsp; // Replace the title by the Sku if is not empty&nbsp; &nbsp; $title = empty($sku) ? get_the_title() : $sku;&nbsp; &nbsp; // Output&nbsp; &nbsp; echo '<h2 class="' . esc_attr( apply_filters( 'woocommerce_product_loop_title_classes', 'woocommerce-loop-product__title' ) ) . '">' . $title . '</h2>';}对于购物车和结帐页面,您将使用:// Frontend: on cart, minicart and checkoutadd_filter( 'woocommerce_cart_item_name', 'sku_replace_title_on_cart_checkout', 10, 3 );function sku_replace_title_on_cart_checkout( $item_name, $cart_item, $cart_item_key ) {&nbsp; &nbsp; if( $sku = $cart_item['data']->get_sku() ) {&nbsp; &nbsp; &nbsp; &nbsp; if( is_cart() ) {&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; $item_name = sprintf( '<a href="%s">%s</a>', esc_url( $cart_item['data']->get_permalink( $cart_item ) ), $sku );&nbsp; &nbsp; &nbsp; &nbsp; } else {&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; $item_name = $sku;&nbsp; &nbsp; &nbsp; &nbsp; }&nbsp; &nbsp; }&nbsp; &nbsp; return $item_name;}代码进入您的活动子主题(或活动主题)的function.php文件中。经过测试和工作。
打开App,查看更多内容
随时随地看视频慕课网APP