add_action( 'woocommerce_shop_loop_item_title', 'woocommerce_template_loop_product_title', 10 );
function woocommerce_template_loop_product_title(){
echo "<h3><a href='".get_the_permalink()."'>".get_the_title()."</a></h3>";
}
add_action( 'woocommerce_shop_loop_item_title', 'woocommerce_template_loop_product_title', 10 );
function woocommerce_template_loop_product_title(){
echo "<h3><a href='".get_the_permalink()."'>".get_the_title()."</a></h3>";
}