Skip to:
Content
Pages
Categories
Search
Top
Bottom

[Resolved] How to remove ”This field can be seen by:”


  • Jero
    Participant

    @jero25

    How to remove or hide “This field can be seen by:” text under each field in sign up form .

Viewing 12 replies - 1 through 12 (of 12 total)

  • mrjarbenne
    Participant

    @mrjarbenne

    You could download a plugin like this: https://wordpress.org/extend/plugins/safecss/ and add these lines of css to your style sheet, or If you have a created a child theme, you can just add these lines to your style.css file

    `.field-visibility-settings-toggle {
    display:none;
    }

    .field-visibility-settings-notoggle {
    display:none;
    }`


    Jero
    Participant

    @jero25

    mrjarbenne thank you so much . . pasting the about mentioned lines in style.css works . .


    alexanderh
    Participant

    @alexanderh

    It doesn’t seem to work for me. Does it matter what theme you have installed on buddypress?


    chesneyryan
    Participant

    @chesneyryan

    Your theme should’t matter. And no need for a plugin. Just make sure you add this code to your style.css and you should be good to go! 😉

    .field-visibility-settings-toggle {
    display:none;
    }

    .field-visibility-settings-notoggle {
    display:none;
    }


    discdemo
    Participant

    @discdemo

    Can anyone help me? I tried to add this code to my functions php and got a parse error on save. i removed it and it’s still giving me a parse error;-( my site seems to be broken, now. I’m going to keep looking, but plz jump in if u can help. thanks!

     

    Parse error: syntax error, unexpected ‘.’ in /home/massagem/public_html/wp-content/plugins/buddypress/bp-themes/bp-default/functions.php on line 39


    discdemo
    Participant

    @discdemo

    I resolved this. thx.


    equinestaff
    Participant

    @equinestaff

    Can i check how you resolved this, do i add the code above to the bottom on the public_html/wp-content/plugins/buddypress/bp-themes/bp-default/functions.php file or which one ?


    markkelly1982
    Participant

    @markkelly1982

    Add the code to your style.css in your default theme..

    public_html/wp-content/themes/YOUR_THEME/style.css


    applegateian
    Participant

    @applegateian

    Adding this CSS didn’t work for me, any reason it wouldn’t?


    Henry
    Member

    @henrywright-1

    You can just comment out the line in register.php. So long as you’re just removing text, the registration process won’t be affected.


    bp-help
    Participant

    @bphelp

    @applegateian
    Just a guess but did you try:

    
    display: none !important;
    

    applegateian
    Participant

    @applegateian

    Yeah I did that in the end @bphelp thanks

Viewing 12 replies - 1 through 12 (of 12 total)
  • The topic ‘[Resolved] How to remove ”This field can be seen by:”’ is closed to new replies.
Skip to toolbar