I'm trying to add some labels after Woocommerce order email items.
Ex- we can do that on cart by using this filer
add_filter( 'woocommerce_cart_item_name', array( $this, 'wc_esd_show_date_cart_page' ), 10, 2 );
above call wc_esd_show_date_cart_page() function and show its data after item name
I want to do the same for order email items, anyone know there have some filter for it, or another way to do this.