1. First create custom fields
To create a custom Date field:
- Create a new custom field
- Give it a variable name (eg. date)
- Give it a label (eg. Date)
- Select date as the type
- Enable the visibility
For example:

To create a custom Time field:
- Create a new custom field
- Give it a variable name (eg. time)
- Give it a label (eg. Time)
- Select time as the type
- Enable the visibility
For example:

To create a custom Datetime field:
- Create a new custom field
- Give it a variable name (eg. datetime)
- Give it a label (eg. Date & Time)
- Select datetime as the type
- Enable the visibility

2. To capture and display node level Date/Time/Datetime
3. To capture and display Date/Time/Datetime fields using the text editor.
For the date chooser. In a question’s text editor paste this:
<p style="text-align: center;">Select a Date </p>
<p style="text-align: center;"><input name="date" type="date" /></p>
To display this variable just type the variable name into a question’s text editor. For example:
{date}
For the time chooser. In a question’s text editor paste this:
<p style="text-align: center;">Select a Time </p>
<p style="text-align: center;"><input name="time" type="time" /></p>
To display this variable just type the variable name into a question’s text editor. For example:
{time}
For the Datetime chooser. In a question’s text editor paste this:
<p style="text-align: center;">Select a Date & Time </p>
<p style="text-align: center;"><input name="datetime" type="datetime-local" /></p>
To display this variable just type the variable name into a question’s text editor. For example:
{datetime}