简体   繁体   English

将公司名称添加到 WooCommerce “新订单” email

[英]Add company name to WooCommerce "New Order" email

How do I add the company name as the subject / title for the WooCommerce order e-mail?如何添加公司名称作为 WooCommerce 订单电子邮件的主题/标题? So when a customer places an order, we'd like to receive an email saying "New B2B order from (COMPANY NAME). We get the company name in the WooCommerce checkout and I tried adding it using {company_name} but without luck.因此,当客户下订单时,我们希望收到 email,上面写着“来自 (COMPANY NAME) 的新 B2B 订单。我们在 WooCommerce 结账时获得了公司名称,我尝试使用 {company_name} 添加它,但没有运气。

If you used the woocommerce_form_field() function to create the field in the checkout, you can access it via key and use the filter woocommerce_email_order_meta_keys to place it inside of the emails.如果您使用woocommerce_form_field() function 在结帐中创建字段,则可以通过密钥访问它并使用过滤器woocommerce_email_order_meta_keys将其放置在电子邮件中。 The value of your field has to be part of the order meta data.您的字段值必须是订单元数据的一部分。

Create a custom plugin or place the code inside of the function.php of your theme:创建自定义插件或将代码放在主题的 function.php 中:

function yourfield_display_in_email( $keys ) {
     $keys['your-label'] = '_your_key';
     return $keys;
}
add_filter( 'woocommerce_email_order_meta_keys', 'yourfield_display_in_email' );

Don't fortget to put the _ before the key name, like in _your_key .不要忘记将_放在键名之前,例如_your_key

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 将订单总重量添加到WooCommerce新订单电子邮件通知中 - Add the order total weight to WooCommerce new order email notification 从 Woocommerce 中的名称更改新订单电子邮件通知 - Change New Order email notification from name in Woocommerce Woocommerce-将用户名添加到新订单电子邮件主题行 - Woocommerce - Add username to new order email subject line 在 WooCommerce 4+ 中添加发送电子邮件通知的新订单状态 - Add a new order status that Send an email notification in WooCommerce 4+ 如何在 WooCommerce 中的已完成订单 email 模板中添加新帐户信息 - How to add new account info on order completed email template in WooCommerce 如何将产品 SKU 添加到 WooCommerce 新订单电子邮件主题 - How to add product SKUs to WooCommerce new order email subject 如何为 woocommerce 中的新 email 订单添加商品重量? - How to add item weight to new email order in woocommerce? 将电子邮件收件人添加到 Woocommerce 中本地取货的新订单通知 - Add email recipients to New order notification for Local pickup in Woocommerce 在Woocommerce中将订单交易ID添加到管理员新订单电子邮件通知中 - Add orders transaction id to admin new order email notification in Woocommerce 在管理新订单电子邮件模板中添加应用的优惠券代码 - WooCommerce - Add Applied Coupon Code in Admin New Order Email Template - WooCommerce
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM