woocommerce_order_details_before_order_table_items, $order

woocommerce_order_details_before_order_table_items, $order

Appears in:
Hook Type: action

See hook in core

Displaying hooks found in version: woocommerce.11.0.0

do_action('woocommerce_order_details_before_order_table_items, $order') is found 3 times:

  • /templates/order/order-details-fulfillments.php line 78
    		</thead>
    
    		<tbody>
    			<?php
    			do_action( 'woocommerce_order_details_before_order_table_items', $order );
    
    			foreach ( $pending_items as $item ) {
    				$product = $item&#91;'item'&#93;->get_product();
    
    				wc_get_template(
    					'order/order-details-fulfillment-item.php',
    
  • /templates/order/order-details-fulfillments.php line 126
    		</thead>
    
    		<tbody>
    				<?php
    				do_action( 'woocommerce_order_details_before_order_table_items', $order );
    
    				foreach ( $fulfillment_items as $item ) {
    					$product = $item&#91;'item'&#93;->get_product();
    
    					wc_get_template(
    						'order/order-details-fulfillment-item.php',
    
  • /templates/order/order-details.php line 70
    		</thead>
    
    		<tbody>
    			<?php
    			do_action( 'woocommerce_order_details_before_order_table_items', $order );
    
    			foreach ( $order_items as $item_id => $item ) {
    				$product = $item->get_product();
    
    				wc_get_template(
    					'order/order-details-item.php',