#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 );
...