woocommerce_before_calculate_totals
Использование
add_action( 'woocommerce_before_calculate_totals', 'wp_kama_woocommerce_before_calculate_totals_action' );
/**
* Function for `woocommerce_before_calculate_totals` action-hook.
*
* @param $that
*
* @return void
*/
function wp_kama_woocommerce_before_calculate_totals_action( $that ){
// action...
}
- $that
- -
Где вызывается хук
woocommerce_before_calculate_totals
woocommerce/includes/class-wc-cart.php 1463
do_action( 'woocommerce_before_calculate_totals', $this );