XF 2.0 User name

Elizabeth

Well-known member
I'm admining a forum for a friend who is using it for the HOA community she lives in. They are requiring use of real names (it's a very closed forum only accessible to members of this community).

I need to find where to change the registration form template from User Name to just Name or Real Name.

I understand this is an atypical request but it is an atypical forum.
 
2 ways,
1. As stated, search in Appearance>>Search phrases>>Text contains: User name. Look for "user_name" phrase.

2. In template register_macros, search and find in line 9:
Code:
{{ phrase('user_name') }}
and replace with "Real Name" and Save.
 
2 ways,
1. As stated, search in Appearance>>Search phrases>>Text contains: User name. Look for "user_name" phrase.

2. In template register_macros, search and find in line 9:
Code:
{{ phrase('user_name') }}
and replace with "Real Name" and Save.
Okay, one question about the second option. Shouldn’t that be real_name or will it read Real Name properly?
 
Top Bottom