For editing the email you can check this post
Please check this post.
To change the label for the payment method, checkout the WooCommerce->Settings->payment->quote request and change the label
Check out this post
Hi Thanks for that.
I mean actually editing the text “Payment Method” I don’t want it to say that I want it to say Request For Quote. Or remove it completely.
I can’t find how to edit the individual fields using the link you sent?
Thanks
That part is not a function of our plugin. That is a WooCommerce filters / actions.
The same with billing detail.
I can point you in the direction:
For billing detail you need to override & customize the
customer detail email :
plugins\woocommerce\templates\emails\email-customer-details.php
Copy that file to your theme\woocommerce\emails\email-customer-details.php and customize it there.
For removing the payment method you can try this and see if it works:
add_filter( ‘woocommerce_get_order_item_totals’, ‘xyz_woocommerce_get_order_item_totals’,100,3 );
function xyz_woocommerce_get_order_item_totals( $total_rows, $order, $tax_display ) {
if ($order->get_status() == “gplsquote-req”) {
unset( $totals[‘payment_method’] );
}
return $totals;
}