3

I got an email from woocommerce order like this:

enter image description here

I want to change Billing address text into Delivery address where could I change that text ?

Thank you.

Ruvee
  • 8,611
  • 4
  • 18
  • 44
Antonio
  • 755
  • 4
  • 14
  • 35

3 Answers3

3

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!

Lukas Lang
  • 31
  • 4
1

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:

enter image description here

Hope this helps someone else :)

Ruvee
  • 8,611
  • 4
  • 18
  • 44
0

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.

Alex
  • 2,707
  • 4
  • 29
  • 42