This should be possible - open up woocommerce-config/config.php and delete following code:
if(!post_password_required())
{
//embeded thumb gallery
if(is_single() && strpos($avia_config['layout'],'thumb') !== false )
{
echo "<div class='hr_invisible '></div>";
new avia_embed_images();
}
else if(! is_single())
{
$image = get_the_post_thumbnail( get_the_ID(), 'portfolio' );
if($image)
{
$image = "<a class='preview_image external-link' href='".get_permalink()."' rel='bookmark' title='".__('Permanent Link:','avia_framework')." ".get_the_title()."'>".$image."</a>";
echo $image;
}
}
//embeded 3 column gallery
if(is_single() && strpos($avia_config['layout'],'three_column') !== false )
{
new avia_three_column();
}
//embeded list gallery
if(is_single() && strpos($avia_config['layout'],'attached_images') !== false )
{
new avia_embed_images();
}
//embeded list gallery
if(is_single() && strpos($avia_config['layout'],'gallery_shortcode') !== false )
{
global $gallery_active;
if(!$gallery_active) echo do_shortcode('[gallery force="avia"]');
}
//embeded list gallery
if(is_single() && strpos($avia_config['layout'],'masonry') !== false )
{
get_template_part( 'includes/loop', 'masonry' );
}
}