woocommerce_before_cart_totals action-hookWC 1.0

Usage

add_action( 'woocommerce_before_cart_totals', 'wp_kama_woocommerce_before_cart_totals_action' );

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

	// action...
}

Where the hook is called

In file: /templates/cart/cart-totals.php
woocommerce_before_cart_totals
woocommerce/templates/cart/cart-totals.php 23
<?php do_action( 'woocommerce_before_cart_totals' ); ?>

Where the hook is used in WooCommerce

Usage not found.