Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Author tepelstreel

    (@tepelstreel)

    Hello and sorry for a late answer. If you enter the following code in the CSS section of the login page, you’ll make the input fields disappear.

    #first_name, #last_name, #display_name {
        display: none
    }

    The problem is, that you still will see the labels. So, you might want to keep the fields but give them the same style with that bit of code:

    #user_login, #user_email, #first_name, #last_name, #display_name {
        background-color: #ffffe0;
        border: 1px solid #e6db55;
        height: 41px;
        width: 272px;
    }

    You could perhaps have a deeper look at the settings of “Register plus Redux” since you don’t seem to style the input fields via the A5 Custom Login Page.

    Edit:

    I just thought about that one:

    label[for=first_name], label[for=last_name], label[for=display_name] {
        display: none;
    }

    This is what you want. Sorry for being so stupid, not to come up with the obvious in the first place. ??

    Thread Starter FloorballMedia

    (@floorballmedia)

    Thank you tepelstreel, it worked! ??

    Plugin Author tepelstreel

    (@tepelstreel)

    Good! Cheers!

    Thread Starter FloorballMedia

    (@floorballmedia)

    Hello again! I tried to register on my website to see how it is, and found this: https://imgur.com/ZYg4F4v

    The fields are gone, but when you are trying to register it says that you have to fill them in, which isn’t that easy when you can’t see them ?? Hope you understand what I’m trying to say ??

    Plugin Author tepelstreel

    (@tepelstreel)

    Yes it might be difficult to fill them in, in deed.

    I guess, the only chance to solve this is to show them again or figure out with the “Register plus Redux” plugin how to make it work without filling in the first, last and display names.

    Sorry, but with that I can’t help.

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Registrations fields question’ is closed to new replies.