When a user logs in to docebo, they see name displayed in the upper right hand corner in the format:
Welcome!, Lastname Firstname.
How can it be changed to:
Welcome!, Firstname Lastname
???
Change display order of Lastname, Firstname
Re: Change display order of Lastname, Firstname
Hi,
it is not possible with the built-in functionalities. If you want to achieve that, you have to work on a html basis.
it is not possible with the built-in functionalities. If you want to achieve that, you have to work on a html basis.
---------------------
Massimiliano Ferrari
Elearnit - Elearning e Knowledge Management
https://www.elearnit.net
https://www.linkedin.com/in/massimilianoferrari
m.ferrari[at]elearnit.net
Skype: m_ferrari_it
Massimiliano Ferrari
Elearnit - Elearning e Knowledge Management
https://www.elearnit.net
https://www.linkedin.com/in/massimilianoferrari
m.ferrari[at]elearnit.net
Skype: m_ferrari_it
Re: Change display order of Lastname, Firstname
To change this, edit the /lib/lib.user.php file (after making a backup copy!).
Search for getUserName then edit to look like this:Again, always back up a file before editing!
Search for getUserName then edit to look like this:
Code: Select all
public function getUserName() {
$user_info = $this->aclManager->getUser(getLogUserId(), false);
return ( $user_info[ACL_INFO_FIRSTNAME].$user_info[ACL_INFO_LASTNAME]
? $user_info[ACL_INFO_FIRSTNAME].' '.$user_info[ACL_INFO_LASTNAME]
: $this->aclManager->relativeId($user_info[ACL_INFO_USERID]) );
}
Re: Change display order of Lastname, Firstname
rsaucier, thanks for posting this!
(I am no programmer, so I wouldn't know how to code it... )
(I am no programmer, so I wouldn't know how to code it... )
---------------------
Massimiliano Ferrari
Elearnit - Elearning e Knowledge Management
https://www.elearnit.net
https://www.linkedin.com/in/massimilianoferrari
m.ferrari[at]elearnit.net
Skype: m_ferrari_it
Massimiliano Ferrari
Elearnit - Elearning e Knowledge Management
https://www.elearnit.net
https://www.linkedin.com/in/massimilianoferrari
m.ferrari[at]elearnit.net
Skype: m_ferrari_it
-
- Newbie
- Posts: 12
- Joined: Mon Jul 02, 2012 2:48 am
Re: Change display order of Lastname, Firstname
Thank you! I've wondered how to do that for a while.
Re: Change display order of Lastname, Firstname
Thanks so much.
Re: Change display order of Lastname, Firstname
I've tried it. the result was successful
Thank you
Thank you
Hello,I'm Murat. If you need me, you can contact my mail