Customize WooCommerce order email

主宰稳场 提交于 2020-01-03 04:47:29

问题


I'm using WooCommerce for my website. I need to change the body of the email in 'Cancelled order'. I want to add my own content in the email body, There is no option to edit the body in the dashboard. Are there any hooks to change the email body?


回答1:


You need to override Cancelled order email template.

To override and edit this email template copy :
woocommerce/templates/emails/admin-cancelled-order.php to your theme folder: yourtheme/woocommerce/emails/admin-cancelled-order.php.
Now edit this file to change simple table header changes.

If you need to change table body content then you need to copy:
woocommerce/templates/emails/email-order-items.php to your theme folder: yourtheme/woocommerce/emails/email-order-items.php, because from admin-cancelled-order.php file table body, this function
<?php echo $order->email_order_items_table( false, true ); ?>
is called which in turns calls the template email-order-items.php.



来源:https://stackoverflow.com/questions/33996319/customize-woocommerce-order-email

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!