woocommerce_before_mini_cart action-hookWC 1.0

Usage

add_action( 'woocommerce_before_mini_cart', 'wp_kama_woocommerce_before_mini_cart_action' );

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

	// action...
}

Where the hook is called

In file: /templates/cart/mini-cart.php
woocommerce_before_mini_cart
woocommerce/templates/cart/mini-cart.php 22
do_action( 'woocommerce_before_mini_cart' ); ?>

Where the hook is used in WooCommerce

Usage not found.