Add the function below to your child theme functions.php file.
/* Preventing Hidden WooCommerce products from showing up in WordPress search results */ if ( ! function_exists( โgamma_search_query_fixโ ) ){ function gamma_search_query_fix( $query = false ) { if(!is_admin() && is_search()){ $query->set( โmeta_queryโ, array( โrelationโ => โORโ, array( โkeyโ => โ_visibilityโ, โvalueโ => โhiddenโ, โcompareโ => โNOT EXISTSโ, ), array( โkeyโ => โ_visibilityโ, โvalueโ => โhiddenโ, โcompareโ => โ!=โ, ), )); } } } add_action( โpre_get_postsโ, โgamma_search_query_fixโ );