我知道BuddyPress中有一个方法可以帮助隐藏一些个人资料字段:
function bp_has_profile( $args = '' ) {
global $profile_template;
// Only show empty fields if we're on the Dashboard, or we're on a user's profile edit page,
// or this is a registration page
$hide_empty_fields_default = ( !is_network_admin() && !is_admin() && !bp_is_user_profile_edit() && !bp_is_register_page() );
// We only need to fetch visibility levels when viewing your own profile
if ( bp_is_my_profile() || bp_current_user_can( 'bp_moderate' ) || bp_is_register_page() ) {
$fetch_visibility_level_default = true;
} else {
$fetch_visibility_level_default = false;
}
$defaults = array(
'user_id' => bp_displayed_user_id(),
'profile_group_id' => false,
'hide_empty_groups' => true,
'hide_empty_fields' => $hide_empty_fields_default,
'fetch_fields' => true,
'fetch_field_data' => true,
'fetch_visibility_level' => $fetch_visibility_level_default,
'exclude_groups' => false, // Comma-separated list of profile field group IDs to exclude
'exclude_fields' => false // Comma-separated list of profile field IDs to exclude
);
$r = wp_parse_args( $args, $defaults );
extract( $r, EXTR_SKIP );
$profile_template = new BP_XProfile_Data_Template( $user_id, $profile_group_id, $hide_empty_groups, $fetch_fields, $fetch_field_data, $exclude_groups, $exclude_fields, $hide_empty_fields, $fetch_visibility_level );
return apply_filters( 'bp_has_profile', $profile_template->has_groups(), $profile_template );
}
我不知道如何调用此方法并传递'exclude_fields'=> $ IDs_to_hide
答案 0 :(得分:0)
是的,可以隐藏个人资料页面中的某些字段。
首先转到主题文件夹中的edit.php。如果你想隐藏文本框,名称是“全名”。
<?php if ( 'textbox' == bp_get_the_profile_field_type() ) : ?>
<?php if ( 'Full Name' != bp_the_profile_field_name() ) : ?>
<label for="<?php bp_the_profile_field_input_name(); ?>"><?php bp_the_profile_field_name(); ?> <?php if ( bp_get_the_profile_field_is_required() ) : ?><?php _e( '(required)', 'buddypress' ); ?><?php endif; ?></label>
<input type="text" name="<?php bp_the_profile_field_input_name(); ?>" id="<?php bp_the_profile_field_input_name(); ?>" value="<?php bp_the_profile_field_edit_value(); ?>" <?php if ( bp_get_the_profile_field_is_required() ) : ?>aria-required="true"<?php endif; ?>/>
<?php endif; ?>
<?php endif; ?>
上面的代码与profile.php文件中的代码相同,但我只会将新条件与条件放在其他Radiobutton和Selectbox等中相同。
您的姓名个人资料字段不会显示在您的个人资料中。
答案 1 :(得分:0)
不确定是否有办法对主题功能执行此操作,但您可以轻松地在编辑循环中隐藏它。将/buddypress/members/single/profile/edit.php复制到您的主题并添加以下行:
<?php if ( 'Field Name' == bp_get_the_profile_field_name() ) continue; ?>
就在这条线下面:
<?php while ( bp_profile_fields() ) : bp_the_profile_field(); ?>
这类似于Chirag的方法,但会跳过与该字段相关的所有内容,包括包装器div,因此您没有无关的HTML。
答案 2 :(得分:0)
您可以使用CSS隐藏具有id选择器的特定字段。
#field_1 {
display:none;
}
#signup_username {
display:none;
}
答案 3 :(得分:0)
您可以通过bp_before_has_profile_parse_args
过滤器来做到这一点:
function skip_xprofile_fields( $args ){
global $bp, $wpdb;
$field_name = 'First Name';
$field_id = $wpdb->get_var( "SELECT id FROM {$bp->profile->table_name_fields} WHERE `name` = '".esc_sql($field_name)."'");
$args['exclude_fields'] = ','.$field_id;
return $args;
}
add_filter('bp_before_has_profile_parse_args', 'skip_xprofile_fields' );
只需将$field_name
var替换为您的字段名称。