Search code examples
wordpresstemplateswoocommercewoocommerce-theming

How to replace a word in WooCommerce order email template?


So I need to replace the word "Order" with "Submission" in customer processing order email in woocommerce.

I was able to change the word in the first two places but unable to find a way to change it in one place(where it says: [Order #1044]

enter image description here

Is it possible to change?


Solution

  • This can be adjusted by editing https://github.com/woocommerce/woocommerce/blob/4.1.0/templates/emails/email-order-details.php

    • This template can be overridden by copying it to yourtheme/woocommerce/emails/email-order-details.php.

    Line nr 34

    The correct path is: yourtheme/woocommerce/emails/email-order-details.php

    NOT

    yourtheme/woocommerce/templates/emails/email-order-details.php

    Template structure & Overriding templates via a theme https://docs.woocommerce.com/document/template-structure/