在WooCommerce中,我启用了完美品牌WooCommerce插件来显示产品品牌。我希望品牌出现在整个周期(单个产品页面,购物车,结账,迷你购物车,订单和电子邮件)的产品名称之前。
我能够在购物车和结帐页面中的产品名称之前显示相关品牌,使用“将Woocommerce品牌名称添加到购物车项目产品名称”回答代码稍微更改(使用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;
}
但我不知道如何在订单和电子邮件通知中实现这一点。
我重新查看了您的问题代码,并添加了一些附加功能,以便在订单页面和电子邮件通知上显示产品品牌:
// 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文件。测试和工作。
使用下面的功能,我已经将自定义字段应用于WooCommerce购物车中添加的产品,并将结账页面应用于订单和通知电子邮件。 我的问题是如何在购物车、收银台等展示产品名称上方的品牌。如有任何帮助,将不胜感激。
我无法将产品属性添加到新订单电子邮件中。我已经将下面的代码片段添加到email-order-items.php(在//SKU..part之后),但是什么也没有发生。甚至滴度“位置:”也不可见。有什么想法吗?
在Woocommerce上,我已将电子邮件订单详细信息php模板文件中的变量更改为,但我仍然无法在电子邮件通知中显示图像: 我需要添加链接以及产品图像。一旦用户点击图像,它应该重定向到特定的页面。 将消息从假更改为真,但图像仍未显示在网站中。
好的,基本上我们在我们的WooCommerce商店中使用ACF创建了一个自定义字段,以便为特定的产品添加一个“发货延迟”通知。
我有这个代码在我的function.php,我怎么能在管理邮件订单中分配这个字段值?谢谢!
因此,当我在mytheme/functions.php文件中编写这段代码时,这里有一个交易 它只在后端工作(产品编辑页面),它保存了变量,但没有显示在meta或add to card按钮之前或之后,我找不到解决方案 我尝试了echo,但仍然没有结果 所以我以为我是我的主题?不,我在其他vps上安装了wordpress,但我仍然没有显示文本字段text nothing 如果你知道这个问题,请友好地告