Skip to:
Content
Pages
Categories
Search
Top
Bottom

Hide some fields on Registration form


  • Venugopal
    Participant

    @mynamevenu24

    I Need to hide the some fields on registration form.
    How can i do that.
    Please help me this on anyone

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

  • danielmariveles
    Participant

    @danielmariveles

    You can do it using jQuery

    $( document ).ready(function() {
        if ($("#register-page").is(":visible")) {
            $(".field_YOUR-INPUT-CLASSNAME-HERE").remove();
            });
         }
    });

    danielmariveles
    Participant

    @danielmariveles

    Or this one:

    $(document).ready(function() {
       if ($("h1:contains('Create an Account')").is(":visible")) {
          $(".field_first-name").remove(); 
       }
    });

    Arvind
    Participant

    @arvindwp

    Hello
    I had added a field to restrict spam registrations (“Re-write the second combination…. types) on my site registration page using a plugin. Now after few minths that I tried removing that field, I could not find / recall that plugin, and am unable to get rid of / edit this field
    Can you please help?
    Should I uninstall BP and reinstall?
    Regards
    Arvind


    shanebp
    Moderator

    @shanebp

    Seems to be a WangGuard field.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Hide some fields on Registration form’ is closed to new replies.
Skip to toolbar