Extra User Fields Settings

Hey there! Thanks for using the free version of Extra Users Fields. Although this version is fully functional, there are more features available. Interested? For a small donation, as a thank you for this useful plugin, check out the full-version. @@FULLAD@@

User Fields:

Fields the user can modify values

@@ERRORUSER@@


Currently Saved User Settings:

@@CURRENTSETTINGSUSER@@

Help:

In the input, provide a single line per input field. Each line will consist on at least 3 parts separated by a single space, the field type, metaname, and the label. A fourth field is required for field types SELECT and RADIO provides a items-list.
The order of the lines representing each input field is the order in which the fields will be displayed in the user profile page.

Synopsis for a input field line is:

     TYPE metaname {Label[:help message]} [{items-list}]

Field TYPEs are one of: TEXT, SELECT, CHECKBOX, RADIO or TEXTAREA.

The metaname, used as the name to store data in the wp_usermeta table, should contain only lowercase letters. This value should be unique, duplicates will be ignored.

Wrapped in brackets ({}), the {Label}, used to display the label of the input field to the visitor, may contain html. The Label can include a helper message for the field, followed by a colon (:).

Input types RADIO, SELECT and, optionally, CHECKBOX will utilize a fourth field; list of items. Wrapped in brackets ({}), the list of items is separated by commas (,) and each item is two parts; value and Label separated by a colon (:). Note: CHECKBOX items will be stored in the user meta information space separated.

TEXT phone {Phone:Please enter your office phone number}
TEXT city {City}
SELECT fruits {Fruits} {banana:Banana,apple:Apple,grape:Grape}
CHECKBOX onoff {On/Off} {on}
CHECKBOX selectany {Select Any} {apple:Apple,grape:Grape,orange:Orange,plum:Plum}
RADIO selectone {Select One} {cats:Cats,dogs:Dogs,horses:Horses,cows:Cows}
TEXTAREA description {Description:Please enter less than 200 characters.}