Hide WooCommerce Product Images June 29 2012
You can hide WooCommerce product images from the product detail pages by using the following technique.

To remove the image add the line of code below to your theme’s functions.php file (found at wp-content/themes/themename/functions.php):
remove_action( 'woocommerce_before_single_product_summary', 'woocommerce_show_product_images', 20 );
This removes the featured product image from the product page but can leave the column intact, pushing the page content over and looking horrible:

If this happens you’ll have to fix the styling issue with some custom CSS. The exact rule you use, and how you make this modification will depend on your particular theme. Themes from WooThemes come with a convenient custom.css feature, so if you’re using a theme from them you can fix this styling issue by adding a line like the following to your custom.css file (found at wp-content/themes/themename/custom.css):
.single-product .product .summary { width: auto; }
And voila, no more product images!

[affiliate_disclaimer]
The post Hide WooCommerce Product Images appeared first on SkyVerge.