Hi Will,
Open up woocomerce-config>config.php and search for:
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>";
Then replace it with:
echo "<a href='".get_permalink($post->ID)."'>".get_the_post_thumbnail( get_the_ID(), 'shop_catalog' )."</a>";
#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>";
Add this to your Quick CSS to hide the leftover button and from text:
#top div .thumbnail_container .add_to_cart_button{
display: none;
}
#top .price .from {
display: none;
}
Regards,
Devin