Skip to:
Content
Pages
Categories
Search
Top
Bottom

Not allowing users to change nickname


  • DeepBlue
    Participant

    @deepblue5

    Hi

    Users can change nicknames on their profile, how not to allow them change their nickname ?

    Thank you

Viewing 1 replies (of 1 total)

  • DeepBlue
    Participant

    @deepblue5

    Hi

    Two solutions : you can either use this plugin :

    or an easier solution, add this css, it will hide the possibility to change nickname (it will be only possible to change if from admin dashboard)

    i think this is a good choice, as you dont want your members to constantly change their nicknames

    label[for=nickname] {
        display: none!important;
    }
    input#nickname {
        display: none!important;
    }
    label[for=display_name] {
        display: none!important;
    }
    select#display_name {
        display: none!important;
    }
Viewing 1 replies (of 1 total)
  • You must be logged in to reply to this topic.
Skip to toolbar