What does it do?
Gravity Forms Conditional Logic Dates adds support for evaluating conditional logic based on dates and times. It can be used to show or hide fields based on user-input dates and times, the current date and time, and even relative dates. Special merge tags and wildcards give you flexible options to precisely trigger conditional logic. Show different fields based on when a user is filling out the form, automatically adjust seasonal pricing, or send a different Notification for after-hours submissions.
Features
- Show and hide fields based on Date and Time field values.
Display different fields based on user input. - Supports static dates, current date, and relative dates.
Flexible conditional logic to meet your form’s unique needs. - Date wildcards.
Target a specific day of the month, specific month of the year, or specific year. - Day of the week merge tags.
Trigger conditional logic based on weekdays, weekends, or any combination. - Current time logic.
Show and hide fields based on the current time. - Full Gravity Forms integration.
Use date-based and time-based conditional logic in Confirmations, Notifications, or any Feed. - Integrates with Gravity Forms Conditional Pricing.
Use date-based conditional logic to adjust product pricing. - Automatic updates.
Get updates and the latest features right in your dashboard. - Awesome support.
We’re here to help! And we mean it.
Documentation
How do I enable this functionality?
After installing and activating Gravity Forms Conditional Logic Dates, Date and Time fields can be selected when creating conditional logic rules for your fields(and other places conditional logic is supported). It integrates seamlessly with Gravity Forms’ existing conditional logic UI.
After selecting a Date or Time field, you will select the operator for comparison (i.e. less than, greater than, is or is not) and enter the value to which the field should be compared.
With Conditional Logic activated on the field, user input on the Date field determines whether your other field should display. Let’s dig into the specifics of the different configurations for Conditional Logic Dates.
Feature Details
Date-Based Logic
Date-based logic supports static dates, relative dates, days the week, and wildcards. This is done using four comparison operators: is, is not, greater than, and less than. Multiple rules can be combined to match date ranges or exclude specific dates from the match.
Static Dates
To compare a Date field to a static date, select the Date field, choose a comparison operator, and enter the static date to compare against.
Display field if current date is greater than April 20, 2021:
MM/DD/YYYY
.Relative Dates
There’s two ways that relative dates are supported in Conditional Logic Dates:
- Comparing a user-inputted date to a relative date.
- Comparing the current date to a static or relative date.
User Input
Comparing user input to relative dates is done using the conditional-logic-only merge tag {today}
. It allows conditional logic to be applied to fields based on whether the selected date is, is not, is greater than or is less than the current date.
Display field if selected date is today:
The {today}
merge tag supports modifiers for making date comparisons like:
- Date is at least 2 weeks away:
{today:+2 weeks}
- Date is no more than 90 days before today:
{today:-90 days}
Current Date
To compare the current date to a static or relative date, follow these steps:
- Add a Date field to your form (it will default to the Datepicker date type).
- Name it something like “Today”.
- Open the field settings for this field and navigate to the Advanced tab.
- Set
{date_mdy}
as the default value (this will automatically populate the current date into this field). - Now you can enable conditional logic on any other field and configure date-based conditions by comparing this field to a date value (see examples above).
gf_invisible
to the field’s CSS Class Name setting on the Appearance tab.Days of the Week
Use the following conditional-logic-only merge tags to check for a specific day of the week: {monday}
, {tuesday}
, {wednesday}
, {thursday}
, {friday}
, {saturday}
, {sunday}
. These are used in the same manner as the {today} merge tag.
Weekend or Weekday
Using the days of the week merge tags, you can apply conditional logic based on whether the date falls on a weekend or weekday.
First, we’ll tackle checking for weekend dates.
- Open the field settings for the field that should be shown/hidden based on the day of the week and navigate to the Conditional Logic tab.
- Enable Conditional Logic.
- Select Any from the drop down that contains the options Any and All.
- Select your Date field from the first drop down.
- Select is from the second drop down.
- Enter
{saturday}
in the third input. - Add a new rule by clicking the (+) button at the end of the row and follow steps 4 and 5 again.
- Enter
{sunday}
for the third input on the new condition.
You can follow the same steps to check for a weekday. The only differences are:
- Select All from the drop down that contains the options Any and All.
- Select is not from the second drop down of each condition.
Date Wildcards
If you want to target a specific day of the month, a specific month, or a specific year, you can use the *
character as a wildcard.
Display field if selected date is within June:
Display field if selected date falls on the 5th day of any month:
Display field if selected date is within the year 2021:
Time-Based Logic
Time-based conditional logic supports both static and current time comparisons using the same operators as Date-based logic.
Static Times
To compare a Time field to a static time, select the Date field, choose a comparison operator, and enter the static time to compare against.
Display field if selected time is greater than 12:00 pm:
hh:mm am
or hh:mm pm
Current Time
Use the special Δ Current Time option to show or hide fields based on the current time.
Display field if current time is before 12:00 pm:
Check out our How to Setup Time-based Conditional Logic for Gravity Forms the Easy Way tutorial for a detailed walkthrough.