woocommerce_review_order_before_order_total
Usage
add_action( 'woocommerce_review_order_before_order_total', 'wp_kama_woocommerce_review_order_before_total_action' );
/**
* Function for `woocommerce_review_order_before_order_total` action-hook.
*
* @return void
*/
function wp_kama_woocommerce_review_order_before_total_action(){
// action...
}Where the hook is called
In file: /templates/checkout/review-order.php
woocommerce_review_order_before_order_total
woocommerce/templates/checkout/review-order.php 100
<?php do_action( 'woocommerce_review_order_before_order_total' ); ?>