admin管理员组文章数量:1130349
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
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
本文标签: How to add a custom text for order confirmation email template woocommerce
版权声明:本文标题:How to add a custom text for order confirmation email template woocommerce 内容由热心网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:https://it.en369.cn/questions/1749070526a2311503.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。


发表评论