diff --git a/modules/oe_authentication_user_fields/oe_authentication_user_fields.module b/modules/oe_authentication_user_fields/oe_authentication_user_fields.module index 84217cf..a6dd5f5 100644 --- a/modules/oe_authentication_user_fields/oe_authentication_user_fields.module +++ b/modules/oe_authentication_user_fields/oe_authentication_user_fields.module @@ -53,8 +53,14 @@ function oe_authentication_user_fields_entity_base_field_info(EntityTypeInterfac ]) ->setDisplayOptions('form', [ 'weight' => $weight, - 'region' => 'content', - ]); + 'region' => 'disabled', + ]) + ->setDisplayOptions('view', [ + 'weight' => $weight, + 'region' => 'disabled', + ]) + ->setDisplayConfigurable('form', TRUE) + ->setDisplayConfigurable('view', TRUE); } return $fields; }