golden hour
/var/www/html/wp-content/plugins/buddypress/bp-templates/bp-nouveau/buddypress/members/single/parts
⬆️ Go Up
Upload
File/Folder
Size
Actions
item-nav.php
916 B
Del
OK
item-subnav.php
683 B
Del
OK
profile-visibility.php
1.61 KB
Del
OK
Edit: profile-visibility.php
<?php /** * BuddyPress - Members Single Profile Edit Field visibility * * @since 3.0.0 * @version 3.1.0 */ if ( empty( $GLOBALS['profile_template'] ) ) { return; } ?> <?php if ( bp_current_user_can( 'bp_xprofile_change_field_visibility' ) ) : ?> <p class="field-visibility-settings-toggle field-visibility-settings-header" id="field-visibility-settings-toggle-<?php bp_the_profile_field_id(); ?>"> <?php printf( /* translators: field visibility level, e.g. "...seen by: everyone". */ __( 'This field may be seen by: %s', 'buddypress' ), '<span class="current-visibility-level">' . bp_get_the_profile_field_visibility_level_label() . '</span>' ); ?> <button class="visibility-toggle-link text-button" type="button"><?php echo esc_html_x( 'Change', 'button', 'buddypress' ); ?></button> </p> <div class="field-visibility-settings" id="field-visibility-settings-<?php bp_the_profile_field_id(); ?>"> <fieldset> <legend><?php esc_html_e( 'Who is allowed to see this field?', 'buddypress' ); ?></legend> <?php bp_profile_visibility_radio_buttons(); ?> </fieldset> <button class="field-visibility-settings-close button" type="button"><?php echo esc_html_x( 'Close', 'button', 'buddypress' ); ?></button> </div> <?php else : ?> <p class="field-visibility-settings-notoggle field-visibility-settings-header" id="field-visibility-settings-toggle-<?php bp_the_profile_field_id(); ?>"> <?php printf( esc_html__( 'This field may be seen by: %s', 'buddypress' ), '<span class="current-visibility-level">' . bp_get_the_profile_field_visibility_level_label() . '</span>' ); ?> </p> <?php endif;
Save