Hi i would like to add a custom text in order confirmation email template . Currently i am not using woo commerce tax option, But i would like to mention my product has 25 % including vat in email template . That custom text need to show only in order confirmation email template near Order total : Total: 348.00 DKK ( Including tax 25% ) .
Hi i would like to add a custom text in order confirmation email template . Currently i am not using woo commerce tax option, But i would like to mention my product has 25 % including vat in email template . That custom text need to show only in order confirmation email template near Order total : Total: 348.00 DKK ( Including tax 25% ) .
Share Improve this question asked Jun 23, 2015 at 5:48 deve cotdeve cot 331 gold badge2 silver badges8 bronze badges 2- Have you override the woo-commerce template? – Mitul Commented Jun 23, 2015 at 7:11
- There's a simple plugin for this wp-html-mail/woocommerce-custom-email-content – Hannes Commented Feb 3, 2017 at 18:44
2 Answers
Reset to default 1You can add custom text or html using this action.
add_action( 'woocommerce_email_after_order_table', 'add_order_email_instructions', 10, 2 );
function add_order_email_instructions( $order, $sent_to_admin ) {
if ( ! $sent_to_admin ) {
echo 'Custom HTml OR Custom Text';
}
}
Go to your child theme folder.
Find woccomerce > emails
from here you can edit your email template.
Refer this link this will might be helpful