id summary reporter owner description type status priority milestone component version severity resolution keywords cc 7304 xProfile Group field danbp "I'm unable to hide a profile field group from the profile edit screen by using following function. It worked in the past, at least 2.1. Not sure it is a bug, but if somebody could confirm. The issue was mentionned on support: https://buddypress.org/support/topic/hide-xprofile-fields-from-edit/ {{{ function bpfr_hide_profile_field_group( $retval ) { if ( bp_is_active( 'xprofile' ) ) : // hide profile group/field to all except admin //if ( !is_super_admin() ) { // hide fields & group tabs on edit screen if( bp_is_user_profile_edit() ) { //exlude fields, separated by comma //$retval['exclude_fields'] = '1'; //exlude groups, separated by comma $retval['exclude_groups'] = '3'; } return $retval; endif; } add_filter( 'bp_after_has_profile_parse_args', 'bpfr_hide_profile_field_group' ); }}} " defect (bug) new normal Extended Profile 2.7 normal reporter-feedback danco38@…