我正在尝试向woocommerce Order Completed Email添加自定义消息。我想在电子邮件的开头添加一条感谢信: "您的反馈对我们非常重要,以便为您提供最优质的服务。所以不要忘记发表关于我们做得如何的评论。"
我尝试编辑PHP模板但效果不佳。
答案 0 :(得分:0)
您可以将此代码放在主题的functions.php文件中:
function action_woocommerce_email_before_order_table( $order, $int, $int ) {
if($order->get_status() == 'completed') {
_e("Your custom text goes here");
}
};
add_action( 'woocommerce_email_before_order_table', 'action_woocommerce_email_before_order_table', 10, 3 );
它也可以翻译为字符串。