当前位置: 首页 > 知识库问答 >
问题:

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

邢星波
2023-03-14

使用下面的功能,我已经将自定义字段应用于WooCommerce购物车中添加的产品,并将结账页面应用于订单和通知电子邮件。

我的问题是如何在购物车、收银台等展示产品名称上方的品牌。如有任何帮助,将不胜感激。

// Display 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']; // Get the WC_Product Object


    if ( $value = $product->get_meta('my_custom_field') ) {
        $product_name .= '<span class="custom_field_class">'.$value.'</span>';
    }

    return $product_name;


}



// Display in orders and email notifications
add_filter( 'woocommerce_order_item_name', 'customizing_order_item_name', 10, 2 );
function customizing_order_item_name( $product_name, $item ) {
    $product = $item->get_product(); // Get the WC_Product Object

    if ( $value = $product->get_meta('my_custom_field') ) {
        $product_name .= '<span class="custom_field_class">'.$value.'</span>';
    }
    return $product_name;
}

共有1个答案

甄华清
2023-03-14

我已经试过用这个方法来解决你的问题

我在后端使用了ACF在产品页面上输入品牌名称,并在函数中使用该字段来获取品牌名称的值并在前端显示。

  • 使用此代码在单个产品页面中显示自定义字段值
 //Displaying custom field value in single product page
add_action( 'woocommerce_single_product_summary', 'add_custom_field', 0 );

function add_custom_field() {
    global $product;             // Changed this

    // Added this too (compatibility with WC +3) 
    $product_id = method_exists( $product, 'get_id' ) ? $product->get_id() : $product->id;

    echo "<div class='produto-informacoes-complementares'>";
    echo get_field( 'brand_name', $product_id );
    echo "</div>";

    return true;
}
  • 使用此代码将此自定义字段存储到购物车和会话中:
// Storing this custom field into cart and session:
add_filter( 'woocommerce_add_cart_item_data', 'save_my_custom_product_field', 10, 2 );

function save_my_custom_product_field( $cart_item_data, $product_id ) {

    $custom_field_value = get_field( 'brand_name', $product_id, true );

    if( !empty( $custom_field_value ) ) 
    {
        $cart_item_data['brand_name'] = $custom_field_value;

        // below statement make sure every add to cart action as unique line item
        $cart_item_data['unique_key'] = md5( microtime().rand() );
    }
    return $cart_item_data;
}
  • 使用此代码在购物车上渲染元并签出:
//Render meta on cart and checkout
add_filter( 'woocommerce_get_item_data', 'render_meta_on_cart_and_checkout', 10, 2 );

function render_meta_on_cart_and_checkout( $cart_data, $cart_item ) {
    $custom_items = array();
    // Woo 2.4.2 updates
    if( !empty( $cart_data ) ) {
        $custom_items = $cart_data;
    }
    if( isset( $cart_item['brand_name'] ) ) {
        $custom_items[] = array( "name" => "Brand Name", "value" => $cart_item['brand_name'] );
    }
    return $custom_items;
}
  • 使用此代码显示邮件夯实上的字段值
//Display Filed Value on Mail tamplate
function add_order_item_meta_acf( $item_id, $values ) {

    wc_add_order_item_meta( $item_id, 'Brand Name', $values [ 'brand_name' ] );


    }
    add_action( 'woocommerce_add_order_item_meta', 'add_order_item_meta_acf' , 10, 2);
 类似资料:
  • 我使用Woocommerce插件在wordpress中开发了购物车。我需要按产品价格在购物车订单中显示产品,请帮助我做到这一点 谢啦

  • 在WooCommerce中,我启用了完美品牌WooCommerce插件来显示产品品牌。我希望品牌出现在整个周期(单个产品页面,购物车,结账,迷你购物车,订单和电子邮件)的产品名称之前。 我能够在购物车和结帐页面中的产品名称之前显示相关品牌,使用“将Woocommerce品牌名称添加到购物车项目产品名称”回答代码稍微更改(使用插件自定义分类法): 但我不知道如何在订单和电子邮件通知中实现这一点。

  • 我一直在网上搜索阅读文档 供您参考,我的主产品页面位于主页中,已选择的每个产品都将重定向到签出页面。现在,这里有一个问题。让我解释一下。。。。 你们看,我在结账页面上有一个旋转木马滑块,用户可以在付款之前更改/替换他们的产品(已经添加到购物车中)。 form-checkout.php 如你所见,在旋转木马中,我包含了

  • 在Woocommerce上,我已将电子邮件订单详细信息php模板文件中的变量更改为,但我仍然无法在电子邮件通知中显示图像: 我需要添加链接以及产品图像。一旦用户点击图像,它应该重定向到特定的页面。 将消息从假更改为真,但图像仍未显示在网站中。

  • WooCommerce中,非Ajax情况下,点击加入购物车按钮后跳转到何处可以通过filter:add_to_cart_redirect修改,下面代码可以实现产品加入购物车后直接结账的功能,跳过购物车页面。 如果你希望Shop首页或分类页中的加入购物车按钮也具备这种效果,不要勾选Enable AJAX add to cart buttons on archives功能。否则该代码只在单个产品页面有

  • 我正在尝试修改自动生成的WooCommerce订单电子邮件中的产品图像。请注意,我尝试使用钩子来实现这一点,而不是创建一个修改过的电子邮件模板。 首先,我在单一产品页面上有一个隐藏的输入。我有一些JS设置图像的ID,它基于产品的颜色(我用ACF制作的自定义属性)。 为了便于参考,我在购物车页面上做了以下工作: 这很好,但我很难按顺序复制电子邮件。到目前为止,我遇到了以下几点。这会在电子邮件中显示图