woocommerce_order_before_calculate_totals, $and_taxes, $this
woocommerce_order_before_calculate_totals, $and_taxes, $this
Appears in: woocommerce.11.0.0
Hook Type: action
Displaying hooks found in version: woocommerce.11.0.0do_action('woocommerce_order_before_calculate_totals, $and_taxes, $this') is found 1 times:
- /includes/abstracts/abstract-wc-order.php line 2147
* @param bool $and_taxes Calc taxes if true. * @return float calculated grand total. */ public function calculate_totals( $and_taxes = true ) { do_action( 'woocommerce_order_before_calculate_totals', $and_taxes, $this ); $fees_total = 0; $shipping_total = 0; $cart_subtotal_tax = 0; $cart_total_tax = 0; $price_decimals = wc_get_price_decimals();