Removing Browse fields

How can fields be removed from the Browse Special Block on All Members page (browse.php)?

For example, I would like to remove Age from the set of browsable fields (see attached image).

I've searched this site, but haven't found anything which clearly describes how to do this, especially on version 7+.

Any help greatly appreciated.

Thanks!

remove_age_browse.JPG · 39.7K · 83 views
Quote · 9 Nov 2010

open file templates/base/scripts/BxBaseBrowse.php and find this code

// gen Age section ;
$sAgeSection  = _genAgeSection( $this, $sCurrentKey );   
if ( $sAgeSection ) {
$sVisibleParam = ( $this -> aParameters['age'] ) ? false : true;

$sAgeSection  =  _genSubDesignBox(
_genJsControlBox($sAgeCaption, 'age_section', $sVisibleParam),
$sAgeSection
);
}

 

Hide this code by edit it to this

// gen Age section ;
//$sAgeSection  = _genAgeSection( $this, $sCurrentKey );   
//if ( $sAgeSection ) {
//    $sVisibleParam = ( $this -> aParameters['age'] ) ? false : true;
//    $sAgeSection  =  _genSubDesignBox(
//        _genJsControlBox($sAgeCaption, 'age_section', $sVisibleParam),
//        $sAgeSection
//     );
//}

Quote · 9 Nov 2010

Tremendous!

Many thanks!

Quote · 10 Nov 2010
 
 
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.