The login window on the Homepage has the caption for Username and Password. I'd like to change the one for Username to E-mail since I customized my dolphin to only login using the e-mail address.
The login window on the Homepage has the caption for Username and Password. I'd like to change the one for Username to E-mail since I customized my dolphin to only login using the e-mail address. |
Find and replace that phrase in admin -> settings -> language settings PS: If possible do not write me personally, please try to ask on the forum first |
Find and replace that phrase in admin -> settings -> language settings I tried that already. I searched for Username in language keys, and a bunch of keys came up. I tried changing each one and testing it out, neither worked.
I searched for "Username". I also tried "Username:" and it did not come up at all. I would think that the second one is correct since on the front of the website, there is a colon just after the word. |
there are approximately 21 iterations of Username in the database under sys_localization_strings
Find and replace that phrase in admin -> settings -> language settings I tried that already. I searched for Username in language keys, and a bunch of keys came up. I tried changing each one and testing it out, neither worked.
I searched for "Username". I also tried "Username:" and it did not come up at all. I would think that the second one is correct since on the front of the website, there is a colon just after the word. and searching on admin panel reveals about the same count:
_E-mail or ID (System) Edit _NickName (System) Edit
_Nickname (System) Edit
_Search by Nickname (System) Edit
_NICK_LEAST2 (System) Edit
_PRIVACY (System) Edit
_PROFILE_ERR (System) Edit
_TERMS_OF_USE (System) Edit
_Enter member NickName or ID (System) Edit
_FieldCaption_NickName_Join (System) Edit
_FieldDesc_NickName_Join (System) Edit
_FieldError_NickName_Mandatory (System) Edit
_FieldError_NickName_Min (System) Edit
_FieldError_NickName_Max (System) Edit
_FieldError_NickName_Unique (System) Edit
_FieldError_NickName_Check (System) Edit
_FieldCaption_NickName_Edit (System) Edit
_FieldCaption_NickName_View (System) Edit
_FieldCaption_NickName_Search (System) Edit
_adm_txt_login_username (System) Edit
_adm_txt_mp_username (System) Edit
also make sure you are clearing your cache when doing this. i would say turn your cache off while you are developing, but seems you have issues with speed already, so turning off cache would only slow it down more.
When a GIG is not enough --> Terabyte Dolphin Technical Support - Server Management and Support |
there are approximately 21 iterations of Username in the database under sys_localization_strings
Find and replace that phrase in admin -> settings -> language settings I tried that already. I searched for Username in language keys, and a bunch of keys came up. I tried changing each one and testing it out, neither worked.
I searched for "Username". I also tried "Username:" and it did not come up at all. I would think that the second one is correct since on the front of the website, there is a colon just after the word. and searching on admin panel reveals about the same count:
_E-mail or ID (System) Edit _NickName (System) Edit
_Nickname (System) Edit
_Search by Nickname (System) Edit
_NICK_LEAST2 (System) Edit
_PRIVACY (System) Edit
_PROFILE_ERR (System) Edit
_TERMS_OF_USE (System) Edit
_Enter member NickName or ID (System) Edit
_FieldCaption_NickName_Join (System) Edit
_FieldDesc_NickName_Join (System) Edit
_FieldError_NickName_Mandatory (System) Edit
_FieldError_NickName_Min (System) Edit
_FieldError_NickName_Max (System) Edit
_FieldError_NickName_Unique (System) Edit
_FieldError_NickName_Check (System) Edit
_FieldCaption_NickName_Edit (System) Edit
_FieldCaption_NickName_View (System) Edit
_FieldCaption_NickName_Search (System) Edit
_adm_txt_login_username (System) Edit
_adm_txt_mp_username (System) Edit
also make sure you are clearing your cache when doing this. i would say turn your cache off while you are developing, but seems you have issues with speed already, so turning off cache would only slow it down more.
So I guess that means I have to clear cache and verify again every single one.
Thanks. I'll give that a try. |
well you can do that, or grep for the langkeys, since i ran grep for "Username" and nothing came up, so that tells me its resolving to a langkey in the source.
so you would look at the instances here in the list that are depicted with _
and most likely the source is going to call on the langkey rather than the word Username:
When a GIG is not enough --> Terabyte Dolphin Technical Support - Server Management and Support |
well you can do that, or grep for the langkeys, since i ran grep for "Username" and nothing came up, so that tells me its resolving to a langkey in the source.
so you would look at the instances here in the list that are depicted with _
and most likely the source is going to call on the langkey rather than the word Username:
That worked!
Thank you. |
I am also looking for the answer to this question. Please could you post how you found the language key to 'USERNAME'. I don't know how to use grep! Also the answer would be helpful! |