skip to Main Content

WooCommerce hide product without thumbnail

Is there any way to hide products that have no thumbnail, I've tried this code but doesn't work. add_action( 'woocommerce_product_query', 'custom_pre_get_posts_query' ); function custom_pre_get_posts_query( $query ) { $query->set( 'meta_query', array( array( 'key' => '_thumbnail_id', 'value' => '0', 'compare' => '>'…

VIEW QUESTION
Back To Top
Search