WooCommerce includes a helpful template system that allows you to edit custom email templates – each order status has its own unique template, and each share a main one which includes the styles.
Create a new emails directory inside your theme folder at: /wp-content/themes/theme-name/woocommerce/emails.
Copy the file found at /plugins/woocommerce/templates/emails/email-styles.php and paste it into the newly created folder in your theme.
You can’t make edits to this file from directly inside the plugin folder, so make sure to copy it over to your theme and you can then make all the desired changes.
You can rewrite email template in your theme. For example yourtheme/woocommerce/emails/email-header.php. This is woocommerce template and you should see something like this:
3
Answers
WooCommerce includes a helpful template system that allows you to edit custom email templates – each order status has its own unique template, and each share a main one which includes the styles.
emails
directory inside your theme folder at:/wp-content/themes/theme-name/woocommerce/emails
./plugins/woocommerce/templates/emails/email-styles.php
and paste it into the newly created folder in your theme.You can’t make edits to this file from directly inside the plugin folder, so make sure to copy it over to your theme and you can then make all the desired changes.
You can rewrite email template in your theme. For example
yourtheme/woocommerce/emails/email-header.php
. This is woocommerce template and you should see something like this:Hope help you.
Change WooCommerce E-mail Styles, Please go to
plugins/woocommerce/templates/emails/email-styles.php
Copy the file and paste this file to your template file:
Change WooCommerce E-mail Styles and paste this file to
current_theme/woocommerce/emails/email-styles.php
Find the right class and edit the styles
I hope it will help