woocommerce_cart_totals_before_order_total action-hookWC 1.0

Usage

add_action( 'woocommerce_cart_totals_before_order_total', 'wp_kama_woocommerce_cart_totals_before_order_total_action' );

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

	// action...
}

Where the hook is called

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

Where the hook is used in WooCommerce

Usage not found.