Search cannot drill down for Featured Members

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'],
);

Paypal email is jeromemingo@gmail.com - http://www.boonex.com/market/posts/modzzz
Quote · 2 Feb 2016

Thank you for the suggestion:

https://github.com/boonex/dolphin.pro/issues/285

Rules → http://www.boonex.com/terms
Quote · 2 Feb 2016
 
 
Below is the legacy version of the Boonex site, maintained for Dolphin.Pro 7.x support.
The new Dolphin solution is powered by UNA Community Management System.