Notifications
Clear all

wpForo 1.x.x [Solved] Remove title from member account settings

6 Posts
2 Users
1 Likes
718 Views
Posts: 30
Topic starter
(@miikinki)
Trusted Member
Joined: 4 years ago

Hello i would like to remove/hide the "title" from member account settings. I tried to search and found other ppl with same issue.

Found this code. Yeah it works and removes it but also removes the title when user is trying to create to topic in my forums and without title he won't be able to.

.wpf-field-name-title.wpf-field-required {
display: none !important;
}

5 Replies
Alvina
Posts: 1869
Moderator
(@alvina)
Member
Joined: 5 years ago

Hi @miikinki,

Please try the following code:

.row_0-col_0 .wpf-field-name-title{
display: none !important;
}

Please don't forget to delete all caches and press CTRL+F5(twice) on the frontend before checking.

Posts: 30
Topic starter
(@miikinki)
Trusted Member
Joined: 4 years ago

Tried the following code. Does exactly the same things. Removes title from member account settings but from make a new topic section too.

3 Replies
Alvina
Moderator
(@alvina)
Joined: 5 years ago

Member
Posts: 1869

@miikinki,

It doesn't remove the title in the new topic section in our case. In any case please remove the code provided above and try the following one:

#wpf-profile-account-form .row_0-col_0 .wpf-field-name-title{
display: none !important;
}
(@miikinki)
Joined: 4 years ago

Trusted Member
Posts: 30

@alvina

That worked perfectly!!!! Thank you very much for help 🙂

Alvina
Moderator
(@alvina)
Joined: 5 years ago

Member
Posts: 1869

@miikinki,

Thank you for letting us know.

Glad to know it worked.