Change Paid Customer Invoice Heading
-
I want to change the heading on my Paid Customer Invoices.
In an invoice, this is the text that appears in the header of your order table – normally with a solid background color.
The class that handles the text is here:
woocommerce/includes/emails/class-wc-email-customer-invoice.phpThe line of code I would need to change is this one:
$this->heading_paid = __( 'Order {order_number} details', 'woocommerce');
But obviously, I don’t want to change one of the core classes.
I know there is hook – woocommerce_email_headers – for email headers. But can’t make it change this text
Is there a filter to modify this text?
Thanks!
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Change Paid Customer Invoice Heading’ is closed to new replies.