Skip to:
Content
Pages
Categories
Search
Top
Bottom

How to I delete “This field can be seen by: Everyone?” on my registration page?

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

  • sharmavishal
    Participant

    @sharmavishal

    add this css

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

    eerrico
    Participant

    @eerrico

    Thanks for your response! Can you clarify for me which CSS file should I add it to, the one for the theme? I already tried that and it didn’t work.


    michaeltcarlson
    Participant

    @michaeltcarlson

    Thanks so much for the solution above. How can I modify the code to apply only to a specific page:

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

    In my case, I’d like “This field can be seen by Anyone” removed from the registration page (#371), but still be visible on a users profile, thus giving users some control over the privacy levels of their fields.

    Thanks in advance for the assistance.


    michaeltcarlson
    Participant

    @michaeltcarlson

    @eerico

    BTW

    The CSS file to update is:

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

Viewing 4 replies - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.