Hi there,
I’m struggling removing some standard text from the customer-processing-order email and I’ve been searching the internet for a solution and even been in contact wit WC… Maybe you can help me
What I want to remove is the text in this snippet:
/**
-
@hooked WC_Emails::email_header() Output the email header
*/
do_action( ‘woocommerce_email_header’, $email_heading, $email ); ?>
<?php _e( "Your order has been received and is now being processed. Your order details are shown below for your reference:", 'woocommerce' ); ?>
<?phpPreferbly I would want to do it with a remove_action or with a filter, but I can’t seem to make it work - do you have any suggestions? I’ve achieved quite a lot of customization of this email, hence I do not need this text any more.
At this point, any help (not involving a plugin) would be much appreciated!