在"新订单"中显示客户电话; Woocommerce电子邮件通知

时间:2017-12-27 08:34:40

标签: php wordpress woocommerce user-data email-notifications

在WooCommerce中,我们如何在"新订单"中显示客户的电话号码?电子邮件通知?

1 个答案:

答案 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>