woocommerce_order_amount_line_total, $total, $this, $item, $inc_tax, $round
woocommerce_order_amount_line_total, $total, $this, $item, $inc_tax, $round
Appears in: woocommerce.11.0.0
Hook Type: filter
Displaying hooks found in version: woocommerce.11.0.0apply_filters('woocommerce_order_amount_line_total, $total, $this, $item, $inc_tax, $round') is found 1 times:
- /includes/abstracts/abstract-wc-order.php line 2303
// Check if we need to round. $total = $round ? NumberUtil::round( $total, wc_get_price_decimals() ) : $total; } return apply_filters( 'woocommerce_order_amount_line_total', $total, $this, $item, $inc_tax, $round ); } /** * Get item tax - useful for gateways. * * @param mixed $item Item to get total from.