0

The "Full name" field of Moodle doesn't show the name. Instead, it shows the text "emailaddress".

enter image description here

Udaya
  • 651
  • 2
  • 8
  • 14
  • Can you click on the link for the full name,so it takes you to the user profile - then see what their first name and last name are? – Russell England Jan 15 '23 at 15:57

1 Answers1

0

My guess is that someone has used the "Language customisation" feature of Moodle and changed the "fullnamedisplay" language string from the default value of:

{$a->firstname} {$a->lastname}

(which displays the first name, followed by the last name) instead, setting it to:

emailaddress

(which just displays the literal text "emailaddress")

I suggest you navigate to Site admin > Language > Language customisations, select "English (en)" and "Open language pack for editing". Then search for "String identifier" "fullnamedisplay" (without quotes). Then delete the "Local customisation" and click "Save changes to the language pack".

davosmith
  • 6,037
  • 2
  • 14
  • 23