I got an email from woocommerce order like this:
I want to change Billing address
text into Delivery address
where could I change that text ?
Thank you.
I got an email from woocommerce order like this:
I want to change Billing address
text into Delivery address
where could I change that text ?
Thank you.
I know that this question has been asked 2 years ago, but I want to answer it in case somebody else is interested how to do it:
WooCommerce 3.4.4
You can edit the text "Billing address" and "Shipping address" in the email-addresses.php
.
Go to wp-content/plugins/woocommerce/templates/emails/email-addresses.php
and copy the file to your child theme folder wp-content/themes/child-theme/woocommerce/emails/
. Open the file and replace the text "Billing address" or "Shipping address" to whatever you like!
I Made it! After following some logic I found the text I needed to change here:
/home/mywebsite/public_html/wp-content/plugins/woocommerce/templates/emails/email-addresses.php
You can see it in the Screenshot
Change Billing address to Delivery address:
Hope this helps someone else :)
You can visit this section in your WP-admin dashboard: WooCommerce -> Settings -> Emails
to view and edit some WooCommerce Email template settings.
If you want to edit HTML template of this Emails, then you need edit files in this directory on your webserver: woocommerce/templates/emails/
.
Please keep in mind that it is not good idea to edit the plugin files, because after plugin updating your changes can be overwritten.
So best way to edit WooCommerce Email HTML templates is:
copy template PHP file, what you want to edit, from wp-content/plugins/woocommerce/templates/emails/
to your child theme folder: wp-content/themes/child-theme/woocommerce/emails/
and edit it here.