MyBB Community Forums

Full Version: Registration
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Is there a way too add Questions too registration??


Also can the profile of people be customised eg Pearsonal Background

Many Thanks

Hapatio
I suppose it can be customised for all with CSS but to have it different for all users would be a real pain I'd assume.

And it might help if you explained what sort of questions you want.....
Hey Thanks for reply,

Id just want a single one lined text Box

Many Thanks

Hapatio
Well you can set up a custom profile field, but I'm not sure how to put that on the registration page and be made to link to the database.
Quote:Also can the profile of people be customised eg Pearsonal Background

Are you trying to link the two?

domain.com/admin/index.php?module=config/profile_fields&action=add

You can add a dropdown with different colors then edit the template in admincp for member_profile...alter some css to use something like this:

style="background: #{$memprofile[X]};"

Or something like that. You can get exact profile option for the custom field later on if that's what you want to do. Essentially each user will have their own custom choice of a background color. You can even add font color as a secondary option.

style="background: #{$memprofile[X]};color: #{$memprofile[Y]}"

I can go on and on...