woocommerce_order_after_calculate_totals

woocommerce_order_after_calculate_totals

Appears in: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,
Hook Type: action

See hook in core

Displaying hooks found in version: woocommerce.9.8.1

do_action('woocommerce_order_after_calculate_totals') is found 1 times:

  • /includes/abstracts/abstract-wc-order.php line 2015
    2011
    2012
    2013
    2014
    2015
    2016
    2017
    2018
    2019
    2020
        if ( $this->has_cogs() && $this->cogs_is_enabled() ) {
            $this->calculate_cogs_total_value();
        }
     
        do_action( 'woocommerce_order_after_calculate_totals', $and_taxes, $this );
     
        $this->save();
     
        return $this->get_total();
    }