Hide products without any thumbnails in WooCommerce

Hide products without any thumbnails in WooCommerce on child sites.

Snippet Type

Execute on Child Sites

Snippet

function woocommerce_product_query( $q ) {
    $q->set( 'meta_key', '_thumbnail_id' );
}
add_action( 'woocommerce_product_query', 'woocommerce_product_query' );
2 Likes

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.