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?
相关问题
- Display product ACF field value in Woocommerce tra
- Adding a custom button after add to cart button in
- How to add a “active” class to a carousel first el
- Setting custom order statuses as valid for payment
- change the font size in tag cloud
相关文章
- wordpress新增页面如何个性化设置
- select query in wordpress
- Get WooCommerce featured products in a WP_Query
- Woocommerce update shipping methods in checkout vi
- Change order status just after payment in WooComme
- Publishing or uploading failed. Error message: “Th
- Facebook Login With WP JWT Auth
- Wordpress development process
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.