Unlike your WordPress theme, you can’t just add CSS to your style.css in order to customize the look of the WooCommerce emails.
This handy PHP snippet is therefore the only viable solution. It’s a little tricky but once you get the idea, adding CSS to Order Emails is a breeze.
PHP Snippet #1: Add CSS to All WooCommerce Emails
/**
* @snippet Add CSS to WooCommerce Emails
* @how-to Get CustomizeWoo.com FREE
* @author Rodolfo Melogli
* @compatible WooCommerce 8
* @community https://businessbloomer.com/club/
*/
add_filter( 'woocommerce_email_styles', 'bbloomer_add_css_to_emails', 9999, 2 );
function bbloomer_add_css_to_emails( $css, $email ) {
$css .= '
h2 { color: red }
h3 { font-size: 30px }
';
return $css;
}
PHP Snippet #2: Add CSS to a Specific WooCommerce Email
Note – you can find a list of email IDs (the snippet uses “new_order” for example) here: https://www.businessbloomer.com/woocommerce-add-extra-content-order-email/
/**
* @snippet Add CSS to Specific WooCommerce Email
* @how-to Get CustomizeWoo.com FREE
* @author Rodolfo Melogli
* @compatible WooCommerce 8
* @community https://businessbloomer.com/club/
*/
add_filter( 'woocommerce_email_styles', 'bbloomer_add_css_to_new_order_email', 9999, 2 );
function bbloomer_add_css_to_new_order_email( $css, $email ) {
if ( $email->id == 'new_order' ) {
$css .= '
h2 { color: red }
h3 { font-size: 30px }
';
}
return $css;
}
Business Bloomer WooCommerce Add CSS To Order Emails Mini-Plugin
You don’t feel confident with coding? You don’t want to purchase yet another bloated, expensive plugin? Great!
Business Bloomer WooCommerce Add CSS To Order Emails Mini-Plugin comes without the usual WordPress plugin hassles. One feature. Lifetime license. No annoying subscriptions. 1 plugin file. A few lines of code. No banners. No up-sells. No WordPress notifications. Use it on as many websites as you like. Lifetime support. 1-page documentation. Super simple settings.
Speaking of which, here are the settings:
As you can see the plugin is straight forward. Install it, add some CSS, and you’re good to go. Simple!
We are unable to get this to work for some reason. We tried this code to fix a font problem in Woocommerce where it is forcing the shipping method to be an ultra-tiny font in the emails. For some reason Woocommerce is using a code “” which causes the shipping method to be so small that our vendors don’t even see it in the emails.
But nothing changed on any emails after enabling the snippet.
Can you try use !important and see if this overrides the default CSS?
Is there a way to add just bold (font-weight) to one item if the value / price is 0 ?
Hey Fredrik, thanks so much for your comment! Yes, this is definitely possible, but I’m afraid it’s custom work. If you’d like to get a quote, feel free to contact me here. Thanks a lot for your understanding!
Hey, how do we add css changes to the customer notification order or processing order? I can’t find the snippet for that. Thanks!
Hi Dave, I’ve updated the tutorial with a link to the list of email IDs. Let me know
Hi Rodolfo,
How can I add css for text in Note/Comment section? Please see screenshot: https://prnt.sc/u7muug
We wanted to change the color to Red.
Thank you,
Hello Mariah, thanks so much for your comment! Yes, this is definitely possible, but I’m afraid it’s custom work. If you’d like to get a quote, feel free to contact me here. Thanks a lot for your understanding!
Hi Rodolfo,
I’m searching solution, maybe you can help me. It is possible to add class to order table in email? To be more specific I need to add class to element which contains product named “Boks”. So if product is named “boks” his should be with special class “featured”. Is this possible ?
Nope, unless you override the email template completely
Thanks so much! Works great and saved a lot of headache since editing the templates in the plugin editor was a pain. I get Woo wants to sell plugins but not adding a CSS field to email settings seems like a pretty big missing feature to me.
Great!
Thanks, this is great! I managed to get rid of a plugin which did this for me and now could style my order emails exactly as I wanted without plugin! 🙂
One question though – since it seems anything is possible by coding and without plugins… I’m not an expert at coding. I have a plugin which tracks affiliates for me. I can use a shortcode from that plugin to display the affiliate ID (I tested this by adding shortcode to a random page in my website and it correctly showed up). How can I add a shortcode directly through the code? Do you have a tutorial for this? Thank you so much for helping!
Thank you! This should help: https://developer.wordpress.org/reference/functions/do_shortcode/
Hi Rodolfo,
Great snippet again!
Only 1 little problem. I am trying to change the font of the complete email.
With below snippet we get a lot done.
But for some reason, the standard text (productname etc) is not changing.
All the h1, h2, etc are changing correctly.
We are using this snippet:
For some reason, the words ‘Shipping method and Payment method are not changing.
The values in these fields ‘Ex: free shipping’ is changing correctly.
What do we do wrong?
Please remove those add_action
Worked beautifully for customising our New Order email to reduce spacing and hide unnecessary elements so that it would print on one page. Thanks for sharing 🙂
Fantastic!
Hi Rodolfo,
Thanks for the snippet. I try to hide a specific table cell with a pseudo class
, but without success. Any way to achieve this? Thank you
Are you testing on Gmail? I think it doesn’t accept CSS pseudo classes
Hi,
What if I want to edit the actual HTML of the footer of the WooCommerce email?
Hey Kosta, if you’re referring to the content, you can change that in the WooCommerce > Settings > Emails page
Hi Rodolfo, thanks for all your awesome woocommerce tutorials.
I have updated the CCS for the woocommerce emails, and everything is being updated with the exception of the actual order item text. ie , the text inside Product, Quantity and price, although the table headers, Subtotal, Shipping , Paymenet method and total are all correct. of course i’ve updated the .td style.
Its really interesting I’ve added the following
add_action( ‘woocommerce_email_header’, ‘add_css_to_emails’ );
add_action( ‘woocommerce_admin_new_order’, ‘add_css_to_emails’ );
add_action( ‘woocommerce_email_order_details’, ‘add_css_to_emails’ );
add_action( ‘woocommerce_email_order_items’, ‘add_css_to_emails’ ); // thought this might override the order item
add_action( ‘woocommerce_email_adresses’, ‘add_css_to_emails’ );
add_action( ‘woocommerce_email_footer’, ‘add_css_to_emails’ );
Hope you find this interesting, I am sure you’ve come across this one before 🙂
Thanks
Keith
Thanks so much for your comment Keith!
Thank you for this snippet it works good in ipad and medium screen but the email in the mobile screen look like disappear half of the email?
what i will do in this case?
Ohoud, thanks so much for your comment! Yes, this is possible – but unfortunately this is custom work and I cannot provide a complementary solution here via the blog comments. Thanks a lot for your understanding! ~R
Thanks for this snippet, it works wonders for simple tweaks!
Brilliant 🙂
Could anyone help me to remove the total sum from new order’s email for customer as well as for admin in Woocommerce 3.2.6? Subtotal, Payment method and all other info must stay. I want remove total sum ONLY.
If it’s impossible, maybe the ease and simple way will be just to set white color for total label and price, so it will not visible? ))) I understand, it’s little bit funny, but it may work.
Thank you.
Hey David, thanks so much for your comment! Yes, this is possible – but unfortunately this is custom work and I cannot provide a complementary solution here via the blog comments. Thanks a lot for your understanding! ~R
I am trying to insert a table into the woocommerce_email_after_order_table location of the customer completed email. I am getting the table into the section but I want to change the styling. The table is a tablepress shortcode which I am inserting using the do_shortcode function. When I look at the email I see the following:
I would like to change the text alignment along with the padding. Is there some way that I can do this?
Sorry, it doesn’t look like the coding came through properly.
No problem David!Maybe you can add CSS to WooCommerce emails with this: https://businessbloomer.com/woocommerce-add-css-woocommerce-emails/
Awesome code find, thank you! I’m wondering why I’m getting a warning though when I add this to my functions? Thank you!
Warning: Missing argument 2 for add_css_to_email() in /home/xxx/public_html/wp-content/themes/xxx/functions.php on line 421
Hey Sara, thanks for your comment! I tried this again on Woo 3.2.3 and I get no warning. Also on PHP7. Not sure really 🙂
Is there something that need to be changed in snippet 2 in WooCommerce 3.0?
I cant get it to work :/
Hey Simon, thanks for your comment! Are you using the exact same snippet?
Hello
Thanks for the great tutorials! They are very helpful. I have a question for you please.
Why are php start / end tags written in an unusual order?
Good question James! So, we’re already in a PHP file and writing a PHP function. The opening PHP tag is already in such file (functions.php), so to echo HTML or CSS we need to close it and then reopen it when we’re finished with the HTML/CSS bit. Does this help?
Hi
I’m not a coder…
I would like to print products on the emails in different formats, depending on product category. So like
All products from category 1 = font=blue
All products from category 2 = font=red
and so on.
How and where do I do this?
Thanks
Patrick
Hello Patrick, thanks so much for your comment! You could try to combine this snippet with this other tutorial (https://businessbloomer.com/woocommerce-conditional-logic-ultimate-php-guide/) in order to apply PHP conditionally. Unfortunately this is custom work and I cannot provide a complementary solution here on the blog. If you’d like to get a quote, feel free to contact me here. Thanks a lot for your understanding! ~R
Hi Rodolfo
Thanks a lot for your reply!!! Great link. I think with this I can work…
Thanks again
Patrick
Awesome to hear that Patrick 🙂
Hello,
First of all, thanks for this! It seems to exist on one place on the internet, and that is here!
I am having difficulties with the if statement.
I believe it might be because of the email IDs having changed. Can that be the case?
Do you know of a list of these email IDs that can be used.
Most importantly, what should I but if I only want to make a change in customer order complete email.
Thanks!
I think I managed to solve it finally by doing so:
Great, Marcus, thanks for following up! Much appreciated 🙂
Dude, thank you, thank you, thank you. You just solved my week-long search for how to do this. So glad I found your comment.
I had the same question as Marcus (a list of the email IDs) and found them here:
https://businessbloomer.com/woocommerce-add-extra-content-order-email/
Ah, awesome!