You can set the readable and writable attributes of the fields to False to prevent them from displaying. Regarding the comments, if you don't want them to display, why do you have them? In any case, you should be able to set the comment attribute of each field to None (SQLFORM itself takes a "comments" argument, which can be set to False, but there's no way to specify that with auth.register()).
Anthony On Friday, August 24, 2012 3:15:50 PM UTC-4, Alec Taylor wrote: > > I have a bunch of fields that are part of a user's account which would be > ridiculous to ask for on signup. > > However they are definitely decoupled parts of the user's data, so need to > be extra fields to the auth_user table. > > How do I hide certain fields from the register form, and remove all col3 > comments? > > Thanks for all suggestions, > > Alec Taylor > --

