woocommerce_order_amount_item_total, $total, $this, $item, $inc_tax, $round

woocommerce_order_amount_item_total, $total, $this, $item, $inc_tax, $round

Appears in:
Hook Type: filter

See hook in core

Displaying hooks found in version: woocommerce.11.0.0

apply_filters('woocommerce_order_amount_item_total, $total, $this, $item, $inc_tax, $round') is found 1 times:

  • /includes/abstracts/abstract-wc-order.php line 2281
     
    			$total = $round ? NumberUtil::round( $total, wc_get_price_decimals() ) : $total;
    		}
    
    		return apply_filters( 'woocommerce_order_amount_item_total', $total, $this, $item, $inc_tax, $round );
    	}
    
    	/**
    	 * Calculate line total - useful for gateways.
    	 *
    	 * @param object $item Item to get total from.