Hi,
Not 100% sure it will work, give a try just add your Portfolio category slugs that you want to exclude in this line.
'terms' => array( 'cat-name' ),
Copy this code below to your functions.php
function search_filter_get_posts($query) {
if ( !$query->is_search )
return $query;
$taxquery = array(
array(
'taxonomy' => 'portfolio-category',
'field' => 'slug',
'terms' => array( 'cat-name' ),
'operator'=> 'NOT IN'
)
);
$query->set( 'tax_query', $taxquery );
}
add_action( 'pre_get_posts', 'search_filter_get_posts' );
Let us know the result.
-Rui