How to remove or hide woocommerce product placeholder image?

I was wondering if there was a way to remove or hide the woocommerce product placeholder image. I will be adding a featured video to every product and when the page first loads it displays an image of the product placeholder and then goes to the video display.

Hello There,

Thanks for writing in!

Please add following CSS in child theme function.php file to remove WooCommerce placeholder image:

remove_action( 'woocommerce_before_single_product_summary', 'woocommerce_show_product_images', 20 );

You can refer following post to setup child theme:

Thanks.