woocommerce_order_item_meta_end, $item_id, $item, $order, $plain_text

woocommerce_order_item_meta_end, $item_id, $item, $order, $plain_text

Appears in:
Hook Type: action

See hook in core

Displaying hooks found in version: woocommerce.11.0.0

do_action('woocommerce_order_item_meta_end, $item_id, $item, $order, $plain_text') is found 3 times:

  • /templates/emails/email-order-items.php line 148

    * @param WC_Order $order The order object.
    * @param bool $plain_text Whether the email is plain text or not.
    * @since 2.3.0
    */
    do_action( ‘woocommerce_order_item_meta_end’, $item_id, $item, $order, $plain_text );

    ?>

  • /templates/emails/email-order-items.php line 210
    				 * @param WC_Order              $order      The order object.
    				 * @param bool                  $plain_text Whether the email is plain text or not.
    				 * @since 2.3.0
    				 */
    				do_action( 'woocommerce_order_item_meta_end', $item_id, $item, $order, $plain_text );
    			}
    			?>
    		</td>
    		<td class="td font-family text-align-<?php echo esc_attr( $price_text_align ); ?>" style="vertical-align:middle;">
    			<?php
    			$qty          = $item->get_quantity();
    
  • /templates/emails/plain/email-order-items.php line 112
    			)
    		);
    
    		// allow other plugins to add additional product information here.
    		do_action( 'woocommerce_order_item_meta_end', $item_id, $item, $order, $plain_text );
    	}
    	// Note.
    	if ( $show_purchase_note && $purchase_note ) {
    		echo "\n" . do_shortcode( wp_kses_post( $purchase_note ) );
    	}
    	echo "\n\n";