Supported Field Types

At the moment, Events Booking support the following custom field types:

  1. Textbox
  2. Textarea
  3. List: This field type will generate a dropdown (single or multiple select). To make it become multiple select, please set Multiple property to Yes
  4. Chekboxes
  5. Radio
  6. Date: Display a calendar allows selecting a date
  7. Heading: Display title of the field as a header on subscription form
  8. Message: Display a text message on subscription form. The message you want to display need to be entered into Description of the custom field
  9. File : Allow subscribers to upload file while subscribing for a subscription plan. The file types which subscribers can upload is controlled in Allowed File Types config option.
  10. Countries: Display list of published countries in a single dropdown select
  11. States: Display list of states of a the selected country. When subscribers select a new country in the country dropdown, the list of states in this field will also be updated automatically
  12. SQL: Display a select dropdown. The options in this select dropdown will be returned from a SQL command. Please note that:
    • The SQL command needs to be entered into Default Values property of the field
    • The SQL command needs to return two columns : value and text
    • Sample SQL command which you can use: SELECT name AS value, name AS text FROM #__eb_countries WHERE published = 1 ORDER BY name

Right now, we only allow one country field and one state field on the form so that it can work together (when country is changed, the states list will be changed / update, too).

In case you don't have country field in the form but still have state field, the state field will get list of states from Default Country which you select in Events Booking configuration.