Disabling Profile User Fields

You can do it with CSS. It’s a bit fussy because you have to do it with nth-of-type targeting to hide/display them (at least that was the solution that I found).

Here. Something like this:

.create-account .user-fields .user-field {
    display: none;
    
    &:nth-of-type(10){
        display: block;
    }
        &:nth-of-type(8){
        display: block;
    }
        &:nth-of-type(13){
        display: block;
    }

    
}
6 Likes