在WooCommerce中,我们如何在"新订单"中显示客户的电话号码?电子邮件通知?
答案 0 :(得分:0)
只需编辑模板并为电话添加<?php echo $order->get_billing_phone();?>
,为电子邮件添加<?php echo $order->get_billing_email();?>
示例:
<tr>
<td width="100%" height="36" class="em_spc_5">Phone: <?php echo $order->get_billing_phone();?></td>
</tr>
<tr>
<td width="100%" height="36" class="em_spc_5">Email: <?php echo $order->get_billing_email();?></td>
</tr>