在WooCommerce新订单电子邮件通知的主题中添加产品名称
P粉990008428
2023-08-18 08:55:45
<p>我想要修改发送给店主的电子邮件的主题行,将产品名称放入其中。
我看到了这段代码,可以将客户的名字放在前面
我该如何调整这段代码来包含产品名称</p>
<pre class="brush:php;toolbar:false;">/*
* 放在主题的functions.php或自定义插件中
*
* 主题过滤器:
* woocommerce_email_subject_new_order
* woocommerce_email_subject_customer_processing_order
* woocommerce_email_subject_customer_completed_order
* woocommerce_email_subject_customer_invoice
* woocommerce_email_subject_customer_note
* woocommerce_email_subject_low_stock
* woocommerce_email_subject_no_stock
* woocommerce_email_subject_backorder
* woocommerce_email_subject_customer_new_account
* woocommerce_email_subject_customer_invoice_paid
**/
add_filter('woocommerce_email_subject_new_order', 'change_admin_email_subject', 1, 2);
function change_admin_email_subject( $subject, $order ) {
global $woocommerce;
$blogname = wp_specialchars_decode(get_option('blogname'), ENT_QUOTES);
$subject = sprintf( '[%s] 新客户订单 (# %s) 来自姓名 %s %s', $blogname, $order->id, $order->billing_first_name, $order->billing_last_name );
return $subject;
}</pre>
<p>也许我们只需要在这里进行修改</p>
<pre class="brush:php;toolbar:false;">$subject = sprintf( '[%s] 新客户订单 (# %s) 来自姓名 %s %s', $blogname, $item->get_name, $order->billing_first_name, $order->billing_last_name );
return $subject;
}</pre>
<p><br /></p>
您的实际代码已经过时...要将购买的产品名称(和数量)添加到发送给管理员的新订单电子邮件通知的主题中,请使用以下代码:
将代码放在您的子主题的functions.php文件中(或插件中)。经过测试,可以正常工作。