Andrei Cristea
Forum Replies Created
-
Hello,
You can use the newly added Terms and Conditions field for this scenario. This field is available only in Kali Forms Pro and provides two types of output:
- URL – this will allow you to set the URL of your terms and conditions page, when displayed in the front-end your field caption will be set as a link to the terms and conditions page.
- Custom text – this will allow you to add your terms directly in the form layout, you can also use HTML code in this field.
For Kali Forms lite/free version you can add a link in your form layout to your terms and conditions page using the Freetext element, this field also allows the use of HTML code. For agreeing with these terms you can use a regular Checkbox field.
Hello,
This can already be done with the default WordPress Export/Import tool, as described here:
https://kaliforms.com/docs/faq/how-to-export-import-your-forms/
Have a nice day!
Hello again,
At the moment we only provide a basic editor for setting up the notification/email body. We are currently looking into improving this, prodiving more control over the notification layout and also including other text editors as well.
We will provide an update as soon as possible.
Have a nice day!
Hello @movingmagic,
As mentioned in our support request conversation, the disable dates option is available when editing the Date and Time Picker field by expanding the Advanced section, after the Show time setting.
For the disabling of a particular weekday, we are currently looking into this.
Have a nice day!
Hello @movingmagic,
Like I mentioned in your other posts, the latest versions are:
Kali Forms Pro 1.7.7
Kali Forms 2.2.19You can also download the Kali Forms Pro latest release by logging in on our site and navigating to My Account > View Details and Downloads.
Hello,
The latest versions are:
Kali Forms Pro 1.7.7
Kali Forms 2.2.19Forum: Plugins
In reply to: [Kali Forms — Contact Form & Drag-and-Drop Builder] date time picker errorHello again,
This should also be resolved in the latest version, please make sure to perform the update then test this one more time.
The latest versions are:
Kali Forms Pro 1.7.7
Kali Forms 2.2.19You can also download the Kali Forms Pro latest release by logging in on our site and navigating to My Account > View Details and Downloads.
Hello again,
After I performed several additional tests I noticed an improvement that can be made to the script, please replace the previously offered script with this one:
document.addEventListener('kaliFormProcessConstructed', function(evt){ var startDate = document.getElementById('#startDate')._flatpickr; var endDate = document.getElementById('#endDate')._flatpickr; startDate.config.onChange.push(function(date){ var nextDay = new Date(date); nextDay.setDate(nextDay.getDate() + 1) endDate.clear(); endDate.set('minDate', nextDay) }); })With the latest release of Kali Forms that just rolled out you no longer need this custom script, you can define this directly from the field configuration.
When editing your Date and Time picker field you will have a new option available: Start date depending on other date picker?, you just need to select your first field in this setting and the date you select in that field will be the minimum date available in your current field.
You can also add additional days to this limit with the help of the Offset dependency option. This will add your entered offset to the date selected in the first field, for example if you select the 1st of January in the first field and set the offset to 2, then your current field will only allow selections starting from the 3rd of January.
Hello @movingmagic,
In order to disable a specific date you just need to add this in the Disable following dates section. You will need to make sure that the date has the same format as you have set for your field in the Date format attribute.
With the latest version that we have just released you can also disable a range of dates with the help of the following syntax:
[startDate:endDate]You can add more than one range in the field configuration, separated by a comma.
You will need to define the dates that are disabled for each date field separately.Hello @movingmagic,
We have taken a closer look at this and noticed a slight hiccup with the calculation. This has already been resolved, please update your Kali Forms version to the latest releases (both the lite and pro versions), the calculation will function properly after the update.
Hello again,
This can be achieved, but it will require a bit of custom scripting. Since you are using one of our Pro plans, for your described scenario please add the following code snippet in the Custom JS section:
document.addEventListener('kaliFormProcessConstructed', function(evt){ var startDate = flatpickr('#startDate'); var endDate = flatpickr('#endDate'); startDate.config.onChange.push(function(date){ var nextDay = new Date(date); nextDay.setDate(nextDay.getDate() + 1) endDate.clear(); endDate.set('minDate', nextDay) }); })For this to work your two Date and Time picker fields need to have the ids: startDate and endDate. With the above script once you make a selection in the startDate field, when you open the endDate field the minimum date will be the date selected in the first field +1 day.
If you want the same date to be selectable in the endDate field then you will only need to comment out the following line from the code:
nextDay.setDate(nextDay.getDate() + 1)We will definitely add this type of option in one of our future versions so you can configure this directly from the field instead of having to use a custom script.
Forum: Plugins
In reply to: [Kali Forms — Contact Form & Drag-and-Drop Builder] date time picker errorHello @movingmagic,
This has already been resolved, please update Kali Forms to the latest release: 2.2.17 and you should no longer encounter this issue.
Have a nice day!
Forum: Plugins
In reply to: [Kali Forms — Contact Form & Drag-and-Drop Builder] translationHello,
Can you please submit a help request to our support team here:
https://kaliforms.com/contact-us/… so that we can take a closer look at this and help you with this matter?
Have a very nice day!
Forum: Plugins
In reply to: [Kali Forms — Contact Form & Drag-and-Drop Builder] translationHello again,
In order for a MO file to be loaded properly please try using the following syntax for the name:
[textdomain]-[language-code].mo
for example if you want to translate into French please try using:
kaliforms-fr_FR.mo
Please try it and let me know if this helped.
Forum: Plugins
In reply to: [Kali Forms — Contact Form & Drag-and-Drop Builder] translationHello @michalmarton,
Thank you for taking your time to report this.
We generated a pot file (you can find it in languages/kali-forms.pot) that you can use to translate the plugin.
Have a very nice day!
PS: We generated this ourselves because Loco translate does not extract strings from JS files