Notifications
Clear all

[Solved] Display name, Nickname disable change, how?

6 Posts
2 Users
3 Likes
904 Views
ZiT3K
Posts: 86
Topic starter
(@zit3k)
Estimable Member
Joined: 2 years ago

Hy!
Display name Nickname disable change, how?



https://kepkuldes.com/image/Uc1UKH

Thank you in advance for your help!

5 Replies
Tutrix
Posts: 1266
(@tutrix)
Noble Member
Joined: 4 years ago

Hi @zit3k

you need the > wpForo User Custom Fields addon to do this

ZiT3K
Posts: 86
Topic starter
(@zit3k)
Estimable Member
Joined: 2 years ago

@tutrix

Is there a free solution?

If it is not possible to disable it, it would also be good if I could remove those 2 lines, for example, in CSS.

3 Replies
Tutrix
(@tutrix)
Joined: 4 years ago

Noble Member
Posts: 1266
Posted by: @zit3k

@tutrix

it would also be good if I could remove those 2 lines, for example, in CSS.

you can remove the fields with CSS "display: none".
but with this you remove the possibility for your members to use display and nickname, then the username will be used everywhere

Nickname vs Username vs Display Names

with the addon you can add the two fields to the registration form
so your members can use display and nickname but not change them in their profile

ZiT3K
(@zit3k)
Joined: 2 years ago

Estimable Member
Posts: 86

@tutrix 

Yes, I know this:
"display: none"

I just don't know how to reference those 2 lines in CSS 🙂

Can you tell me that please?

Tutrix
(@tutrix)
Joined: 4 years ago

Noble Member
Posts: 1266
Posted by: @zit3k

@tutrix 

I just don't know how to reference those 2 lines in CSS 🙂

Can you tell me that please?

.wpf-field.wpf-field-type-text.wpf-field-name-display_name, 
.wpf-field.wpf-field-type-text.wpf-field-name-user_nicename {
  display: none;
}