add_action( 'woocommerce_shop_loop_item_title', 'add_category-info', 20, 0 );
function add_category-info() {
global $post;
$categories = get_the_category($post->ID);
$cat_link = get_category_link($categories[0]->cat_ID);
echo '<a href="'.$cat_link.'">'.$categories[0]->cat_name.'</a>'
}