woocommerce_before_shop_loop_item_title action-hookWC 1.0

Hook: woocommerce_before_shop_loop_item_title.

Usage

add_action( 'woocommerce_before_shop_loop_item_title', 'wp_kama_woocommerce_before_shop_loop_item_title_action' );

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

	// action...
}

Where the hook is called

In file: /templates/content-product.php
woocommerce_before_shop_loop_item_title
woocommerce/templates/content-product.php 42
do_action( 'woocommerce_before_shop_loop_item_title' );

Where the hook is used in WooCommerce

woocommerce/includes/wc-template-hooks.php 39
add_action( 'woocommerce_before_shop_loop_item_title', 'woocommerce_show_product_loop_sale_flash', 10 );
woocommerce/includes/wc-template-hooks.php 97
add_action( 'woocommerce_before_shop_loop_item_title', 'woocommerce_template_loop_product_thumbnail', 10 );