Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #5844
    digitalist
    Participant

    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?

    #5854
    Vladimir
    Keymaster

    “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 );
    ...
    
    #5855
    digitalist
    Participant

    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.

Viewing 3 posts - 1 through 3 (of 3 total)
  • You must be logged in to reply to this topic.