woocommerce_after_shop_loop_item_titleaction-hookWC 1.0

Fires after the product title, allowing additional information to be displayed.
This hook fires in the WooCommerce loop on the shop and product category pages.

Usage

add_action( 'woocommerce_after_shop_loop_item_title', 'wp_kama_woocommerce_after_shop_loop_item_title_action' );

/**
 * Function for `woocommerce_after_shop_loop_item_title` action-hook.
 * 
 * @return void
 */
function wp_kama_woocommerce_after_shop_loop_item_title_action(){
	// action...
}

Examples

#1 Display the product short description after the title

add_action( 'woocommerce_shop_loop_item_title', 'show_product_short_description' );

function show_product_short_description() {

	global $product;

	if ( $tmp_desc = $product->get_short_description() ) {
		echo '<div class="product-description">' . $tmp_desc . '</div>';
	}

}

Where the hook is called

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

Where the hook is used in WooCommerce

woocommerce/includes/wc-template-hooks.php 111
add_action( 'woocommerce_after_shop_loop_item_title', 'woocommerce_template_loop_price', 10 );
woocommerce/includes/wc-template-hooks.php 112
add_action( 'woocommerce_after_shop_loop_item_title', 'woocommerce_template_loop_rating', 5 );