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