Quote:
Originally Posted by jimsflies
I'm trying to get this working on my site. The registration doesn't include the extra fields portion of the registration process. I noticed on your site, it also wouldn't let me register and kicked me into the normal registration page...and also gave me an error about missing information.
I'm trying to add all the extra stuff to the registration template, however, the issue I need to resolve is making the overlay itself scroll. I'm assuming this is somewhere in the css file?
|
You need added manually the fields in the quick_register template.
example:
PHP Code:
<select name="userfield[field6]" id="csel_field6">
<option value="-1" selected="selected">Sex?</option>
<option value="1">Famale</option>
<option value="2">Male</option>
</select>
You need find de field number in your admincp -> extra fields, and see the numer of your select field
(sorry for my bad english)