How can I edit the admin-new-order.php WooCommerce template to send conditionally some custom customer details based on shipping method?
For example (for New Order email notification):
- If the Order Shipping method is
flat rate
, I want to add some custom fields information to the customer details. - If the Order shipping method is NOT
flat rate
, I don't want custom fields info to be displayed.
Or maybe there's some snippet that goes in function.php for this?
You can use a custom function hooked in any of this hooks (tuning the hook priority):
Here it is an example of hooked code (instead of overriding the template):
The hook priority here is 15, so it comes after the customer details.
Code goes in function.php file of your active child theme (or theme) or also in any plugin file.
This code is tested and works.