woocommerce_before_shop_loop_item action-hookWC 1.0

Hook: woocommerce_before_shop_loop_item.

Usage

add_action( 'woocommerce_before_shop_loop_item', 'wp_kama_woocommerce_before_shop_loop_item_action' );

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

	// action...
}

Where the hook is called

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

Where the hook is used in WooCommerce

woocommerce/includes/wc-template-hooks.php 94
add_action( 'woocommerce_before_shop_loop_item', 'woocommerce_template_loop_product_link_open', 10 );