In wp-content\themes\abundance\woocommerce-config\config.php search for following code:
echo "<div class='thumbnail_container'>";
echo "<div class='thumbnail_container_inner'>";
echo get_the_post_thumbnail( get_the_ID(), 'shop_catalog' );
echo $link;
echo "<a class='button show_details_button $extraClass' href='".get_permalink($post->ID)."'>".__('Show Details','avia_framework')."</a>";
if(!empty($rating)) echo "<span class='rating_container'>".$rating."</span>";
echo "</div>";
echo "</div>";
and replace it with:
echo "<div class='thumbnail_container'>";
echo "<div class='thumbnail_container_inner'>";
echo "<a class='button show_details_button $extraClass' href='".get_permalink($post->ID)."'>";
echo get_the_post_thumbnail( get_the_ID(), 'shop_catalog' );
echo "</a>";
if(!empty($rating)) echo "<span class='rating_container'>".$rating."</span>";
echo "</div>";
echo "</div>";