diff --git a/includes/admin/core/class-admin-metabox.php b/includes/admin/core/class-admin-metabox.php index 7f4c7fc0..ceaf819f 100644 --- a/includes/admin/core/class-admin-metabox.php +++ b/includes/admin/core/class-admin-metabox.php @@ -2280,7 +2280,7 @@ if ( ! class_exists( 'um\admin\core\Admin_Metabox' ) ) { $privacy_options = array( '1' => __( 'Everyone', 'ultimate-member' ), '2' => __( 'Members', 'ultimate-member' ), - '-1' => __( 'Only visible to profile owner and admins', 'ultimate-member' ), + '-1' => __( 'Only visible to profile owner and users who can edit other member accounts', 'ultimate-member' ), '-3' => __( 'Only visible to profile owner and specific roles', 'ultimate-member' ), '-2' => __( 'Only specific member roles', 'ultimate-member' ), ); diff --git a/includes/um-short-functions.php b/includes/um-short-functions.php index 77f60c56..b4d26837 100644 --- a/includes/um-short-functions.php +++ b/includes/um-short-functions.php @@ -1531,7 +1531,7 @@ function um_can_view_field( $data ) { $can_view = false; } break; - case '-1': // Only visible to profile owner and admins + case '-1': // Only visible to profile owner and users who can edit other member accounts if ( ! is_user_logged_in() ) { $can_view = false; } elseif ( ! um_is_user_himself() && ! UM()->roles()->um_user_can( 'can_edit_everyone' ) ) {