woocommerce_admin_order_items_after_line_items

woocommerce_admin_order_items_after_line_items

Appears in: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,
Hook Type: action

See hook in core

Displaying hooks found in version: woocommerce.9.8.1

do_action('woocommerce_admin_order_items_after_line_items') is found 1 times:

  • /includes/admin/meta-boxes/views/html-order-items.php line 79
    75
    76
    77
    78
    79
    80
    81
    82
    83
    84
    85
            include __DIR__ . '/html-order-item.php';
     
            do_action( 'woocommerce_order_item_' . $item->get_type() . '_html', $item_id, $item, $order );
        }
        do_action( 'woocommerce_admin_order_items_after_line_items', $order->get_id() );
        ?>
    </tbody>
    <tbody id="order_fee_line_items">
        <?php
        foreach ( $line_items_fee as $item_id => $item ) {
            include __DIR__ . '/html-order-fee.php';