What stock profile fields can be added to a multi-registration page?
A: All stock profile fields can be added to a multi-registration page. For specific instructions on adding the First Name, Last Name, Email Address, Password, Time Zone, State/Prov, and Country fields, see the multi-registration setup primer.
In addition to these fields you can add the following stock profile fields:
id/name |
FullName |
CompanyName |
JobTitle |
Phone |
Phone2 |
Address1 |
Address2 |
Address3 |
City |
PostalCode |
To add these fields, the id and name values must be added to the page exactly as they are listed above in the following format:
{
labelText: 'Your Label Here', // Change label above input field
fieldType: {
inputElem: 'input',
type: 'text'
},
id: 'UseValueFromAboveTable',
name: 'UseValueFromAboveTable',
required: 'XR', // 'XR' = REQUIRED, '' = NOT REQUIRED
order: 35,
},
For example, to add the postal code field you would add the following:
{
labelText: 'Zip Code', // Change label above input field
fieldType: {
inputElem: 'input',
type: 'text'
},
id: 'PostalCode',
name: 'PostalCode',
required: 'XR', // 'XR' = REQUIRED, '' = NOT REQUIRED
order: 35,
},
Comments
Please sign in to leave a comment.