Here is the scenario :
You attempt to search for featured members by going to http://www.yourdomain.com/search.php?show=featured
Now, if you try to drill down further by using the search box (for example, to find all featured females), the search does not work because upon submitting, the "show" parameter is not retained in the Query URL. See fix below :
In inc/classes/BxDolProfileFields.php
Find :
// create search mode hidden input
$aInputs[] = array(
'type' => 'hidden',
'name' => 'search_mode',
'value' => $sSearchModeName,
);
Just below, Add
//create show parameter as hidden input
$aInputs[] = array(
'type' => 'hidden',
'name' => 'show',
'value' => $_REQUEST['show'],
);