Woocommerce新订单定制主题



因此,如果您转到wooccommerce->设置->电子邮件->新订单,并且在"主题"选项卡上显示"可用占位符:{site_title}、{Order_date}、{Order_number}"-我需要的是能够放置此订单->来自{customer_name}({customer_email}(的新订单:{item_names}-因为我需要知道订单来自谁,所以我需要名称,电子邮件和他/她购买的物品。提前感谢您的回答

将此代码添加到您的函数或插件中

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( 'New Order (# %s) from %s %s %s', $order->id, $order->billing_first_name, $order->billing_last_name,  $order->billing_email);
return $subject;
}

要添加订单项目,请使用此$order->get_items()

最新更新