woocommerce_checkout_update_order_review action-hookWC 1.0

Usage

add_action( 'woocommerce_checkout_update_order_review', 'wp_kama_woocommerce_checkout_update_order_review_action' );

/**
 * Function for `woocommerce_checkout_update_order_review` action-hook.
 * 
 * @param  $wp_unslash() 
 *
 * @return void
 */
function wp_kama_woocommerce_checkout_update_order_review_action( $wp_unslash() ){

	// action...
}
$wp_unslash()
-

Where the hook is called

WC_AJAX::update_order_review()
woocommerce_checkout_update_order_review
woocommerce/includes/class-wc-ajax.php 346
do_action( 'woocommerce_checkout_update_order_review', isset( $_POST['post_data'] ) ? wp_unslash( $_POST['post_data'] ) : '' ); // phpcs:ignore WordPress.Security.ValidatedSanitizedInput.InputNotSanitized

Where the hook is used in WooCommerce

Usage not found.