woocommerce_order_formatted_line_subtotal filter-hookWC 1.0

Usage

add_filter( 'woocommerce_order_formatted_line_subtotal', 'wp_kama_woocommerce_order_formatted_line_subtotal_filter', 10, 3 );

/**
 * Function for `woocommerce_order_formatted_line_subtotal` filter-hook.
 * 
 * @param  $subtotal 
 * @param  $item     
 * @param  $that     
 *
 * @return 
 */
function wp_kama_woocommerce_order_formatted_line_subtotal_filter( $subtotal, $item, $that ){

	// filter...
	return $subtotal;
}
$subtotal
-
$item
-
$that
-

Where the hook is called

WC_Abstract_Order::get_formatted_line_subtotal()
woocommerce_order_formatted_line_subtotal
woocommerce/includes/abstracts/abstract-wc-order.php 2095
return apply_filters( 'woocommerce_order_formatted_line_subtotal', $subtotal, $item, $this );

Where the hook is used in WooCommerce

Usage not found.