Hello everybody and thanks in advance for helping.
I try to be short: I manage a multivendor woocommerce with WCFM plugin. When a new order is placed, a new order email in sent both to admin and to stores; the "issue" is that the store email doesn't include the Customer Order Notes added during checkout (i.e. notes for courier). I compared the admin-new-order.php template where I find this piece of code
* @hooked WC_Emails::order_meta() Shows order meta data. */ do_action( 'woocommerce_email_order_meta', $order, $sent_to_admin, $plain_text, $email );
with the store-new-order.php template where I find instead this code
if( apply_filters( 'wcfm_is_allow_wc_default_email_order_meta', true ) ) { do_action( 'woocommerce_email_order_meta', $order, 0, 0, $email ); }
How can I modify the store email template?