将发货地址添加到WooCommerce订单电子邮件

时间:2016-10-30 作者:Jon

将我的Woocommerce升级到2.6.6后,新订单电子邮件只显示帐单地址,不显示发货地址。我可以手动将发货地址添加到我的电子邮件中吗?

我的密码是

do_action( \'woocommerce_email_customer_details\', $order, $sent_to_admin, $plain_text, $email );
但woocommerce\\u email\\u customer\\u details似乎没有打印发货地址。我可以覆盖或硬编码发货地址吗?

1 个回复
SO网友:Jon

拨打发货地址:

<p><?php echo $order->get_formatted_shipping_address(); ?></p>
前面的标题是:

 <h3><?php _e( \'Shipping address\', \'woocommerce\' ); ?></h3>
也可以使用此选项:
<?php echo $order->get_shipping_address(); ?>

相关推荐

如何将外部变量传递给wp_new_User_Notify_Email过滤器?

我们正在尝试自定义新用户在我们的网站上注册时收到的默认电子邮件。为此,我们使用WP4.9.0中添加的wp\\u new\\u user\\u notification\\u email筛选器对于我们的功能。php文件不要凌乱,我们在“templates/email\\u welcome.php”中有电子邮件模板。我们需要加载此文件来构建$message变量,但返回的内容始终为空。下面是我们在子主题函数中添加的内容。php// ========================================