woocommerce_after_order_fee_item_name action-hookWC 1.0

Usage

add_action( 'woocommerce_after_order_fee_item_name', 'wp_kama_woocommerce_after_order_fee_item_name_action', 10, 3 );

/**
 * Function for `woocommerce_after_order_fee_item_name` action-hook.
 * 
 * @param  $item_id 
 * @param  $item    
 * @param  $null    
 *
 * @return void
 */
function wp_kama_woocommerce_after_order_fee_item_name_action( $item_id, $item, $null ){

	// action...
}
$item_id
-
$item
-
$null
-

Where the hook is called

In file: /includes/admin/meta-boxes/views/html-order-fee.php
woocommerce_after_order_fee_item_name
woocommerce/includes/admin/meta-boxes/views/html-order-fee.php 25
<?php do_action( 'woocommerce_after_order_fee_item_name', $item_id, $item, null ); ?>

Where the hook is used in WooCommerce

Usage not found.