[Register Module] How to remove 'full name' and 'url' fields?

skunker

Joined: 2005-02-04
Posts: 344
Posted: Sun, 2012-06-24 13:27

Hi all,
I would like to know if it's possible to remove the following fields from the registration module:

Username, URL

Does anyone know how?

 
floridave
floridave's picture

Joined: 2003-12-22
Posts: 27300
Posted: Sun, 2012-06-24 16:49

I think the username is required but you can do:

#g-dialog li:nth-child(2){
   display:none;
}
#g-dialog li:nth-child(5){
   display:none;
}

to your css to remove the 2nd and 5th list item.

Dave
_____________________________________________
Blog & G2 || floridave - Gallery Team

 
skunker

Joined: 2005-02-04
Posts: 344
Posted: Sun, 2012-06-24 22:20

Thanks Dave, was thinking along the same lines, as well.