在 Woocommerce 订单和电子邮件通知中显示产品品牌和名称

Posted

技术标签:

【中文标题】在 Woocommerce 订单和电子邮件通知中显示产品品牌和名称【英文标题】:Display Product Brand and Name in Woocommerce Orders and email notifications 【发布时间】:2019-08-27 15:39:11 【问题描述】:

在 WooCommerce 中,我启用了 Perfect Brands Woocommerce 插件来显示产品品牌。我希望品牌在整个周期(单个产品页面、购物车、结帐、迷你购物车、订单和电子邮件)中出现在产品名称之前。

我可以在购物车和结帐页面中的产品名称之前显示相关品牌,使用 "Adding Woocommerce Brands names to cart item product names" 回答代码轻微更改 (使用 pbw-brand 插件自定义分类)

// Display product brand in Cart and checkout pages
add_filter( 'woocommerce_cart_item_name', 'customizing_cart_item_name', 10, 3 );
function customizing_cart_item_name( $product_name, $cart_item, $cart_item_key ) 
    $product =  $cart_item['data']; // The product
    $product_id =  $cart_item['product_id']; // The product id

    // Loop through the product brand names
    foreach( wp_get_post_terms( $product_id, 'pwb-brand' ) as $wp_term )
        $brand_names[] = $wp_term->name; // Set the brand names in an array

    $brand_names_str = implode( ', ', $brand_names); // Set the brand names in a comma separated string array

    $brand = $brand_names_str;
    $product_permalink = $product->get_permalink( $cart_item );

    if ( is_cart() && count( $brand_names ) > 0 )
        return sprintf( '<a href="%s">%s %s</a>', esc_url( $product_permalink ), $brand, $product->get_name()  );
    elseif ( count( $brand_names ) > 0 )
        return  $brand . ' ' . $product_name;
    else return $product_name;

但我不知道如何为订单和电子邮件通知实现这一点。

【问题讨论】:

【参考方案1】:

我重新查看了您的问题代码并添加了一些附加功能,以在订单页面和电子邮件通知中显示产品品牌:

// Utility: Get the product brand term names (from the product ID)
function wc_get_product_brand( $product_id ) 
   return implode(', ', wp_get_post_terms($product_id, 'pwb-brand', ['fields' => 'names']));


// Display product brand in Cart and checkout pages
add_filter( 'woocommerce_cart_item_name', 'customizing_cart_item_name', 10, 3 );
function customizing_cart_item_name( $product_name, $cart_item, $cart_item_key ) 
    $product = $cart_item['data'];          // The WC_Product Object
    $permalink = $product->get_permalink(); // The product permalink

    if( $brand = wc_get_product_brand( $cart_item['product_id'] ) ) 
        if ( is_cart() )
            return sprintf('<a href="%s">%s %s</a>', esc_url($permalink), $brand, $product->get_name());
        else
            return  $brand . ' ' . $product_name;
    
    return $product_name;


// Display product brand in order pages and email notification
add_filter( 'woocommerce_order_item_name', 'customizing_order_item_name', 10, 2 );
function customizing_order_item_name( $product_name, $item ) 
    $product = $item->get_product();        // The WC_Product Object
    $permalink = $product->get_permalink(); // The product permalink

    if( $brand = wc_get_product_brand( $item->get_product_id() ) ) 
        if ( is_wc_endpoint_url() )
            return sprintf('<a href="%s">%s %s</a>', esc_url($permalink), $brand, $product->get_name());
        else
            return  $brand . ' ' . $product_name;
    
    return $product_name;

代码进入您的活动子主题(或活动主题)的 function.php 文件中。经过测试并且可以工作。

【讨论】:

你太棒了,伙计!非常感谢! 是否也可以在后台订单详情和产品部分显示品牌? @FarrukhKarimov 这应该以不同的方式完成(不确定是否可以在产品名称中显示品牌),因为订单项目是动态可编辑数据。所以你应该问一个新问题。

以上是关于在 Woocommerce 订单和电子邮件通知中显示产品品牌和名称的主要内容,如果未能解决你的问题,请参考以下文章

在 Woocommerce 购物车、结帐页面、订单和电子邮件通知中的产品标题上方显示品牌名称

立即在 WooCommerce 中设置待处理订单并发送处理电子邮件通知

在 Woocommerce 订单电子邮件通知中获取用户 ID [重复]

删除某些 WooCommerce 电子邮件通知中的产品购买说明

在Woocommerce电子邮件通知中显示自定义订单状态的付款链接

当订单中有缺货商品时,在 WooCommerce 电子邮件通知中显示消息