Change WordPress user roles and capabilities › Forums › Restrict or Permit access inside WordPress – how to › Permission to view user profile custom fields Tagged: user fields permisson This topic has 2 replies, 2 voices, and was last updated 5 years, 3 months ago by digitalist. Viewing 3 posts - 1 through 3 (of 3 total) Author Posts 24/07/2019 at 12:18 #5844 digitalistParticipant I am using “User Registration” from WPEverest: https://wordpress.org/plugins/user-registration/ to create registration page with some extra user fields. I have made a custom role with some limited acces, but access to user, but the custom fields are not visible? How can I allow these custom fields for the role? 30/07/2019 at 06:57 #5854 VladimirKeymaster “User Registration” plugin shows extra fields at back-end user profile only to a user with ‘manage_options’ capability: public function show_user_extra_fields( $user ) { if ( ! current_user_can( 'manage_options' ) ) { return; } $show_fields = $this->get_user_meta_by_form_fields( $user->ID ); ... 30/07/2019 at 07:00 #5855 digitalistParticipant Yes… I unfortunately also found that line. I wrote to the plugins developers to lower the capability, but for now I have changed it in the plugin ? Thanks for getting back to me. Author Posts Viewing 3 posts - 1 through 3 (of 3 total) You must be logged in to reply to this topic. Log In Username: Password: Keep me signed in Log In