woocommerce_checkout_before_order_review action-hookWC 1.0

Usage

add_action( 'woocommerce_checkout_before_order_review', 'wp_kama_woocommerce_checkout_before_order_review_action' );

/**
 * Function for `woocommerce_checkout_before_order_review` action-hook.
 * 
 * @return void
 */
function wp_kama_woocommerce_checkout_before_order_review_action(){

	// action...
}

Where the hook is called

In file: /templates/checkout/form-checkout.php
woocommerce_checkout_before_order_review
woocommerce/templates/checkout/form-checkout.php 56
<?php do_action( 'woocommerce_checkout_before_order_review' ); ?>

Where the hook is used in WooCommerce

Usage not found.