woocommerce_review_order_after_cart_contents action-hookWC 1.0

Usage

add_action( 'woocommerce_review_order_after_cart_contents', 'wp_kama_woocommerce_review_order_after_cart_contents_action' );

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

	// action...
}

Where the hook is called

In file: /templates/checkout/review-order.php
woocommerce_review_order_after_cart_contents
woocommerce/templates/checkout/review-order.php 50
do_action( 'woocommerce_review_order_after_cart_contents' );

Where the hook is used in WooCommerce

Usage not found.