Home › Forums › Quform WordPress › 2 checkboxes required…
Hello we made a form where two parts (of days) need to be selected. Is there a way to set it? Now it is possible to only check one and go on, but two must be the minimal choise..
Text only is not enough sadly..
Found this (https://support.themecatcher.net/quform-wordpress-v2/guides/customization/limit-checkbox-selections) Is that it also for my form?
You don't have permission to view this content. Please log in or register and then verify your purchases to gain access.
Thanks we’ll try it out 😉
That did the job, also placed jQuery in it like this
(jQuery(function ($) { var $checkboxes = $(‘.quform-field-1_3’).click(function () { if ($checkboxes.filter(‘:checked’).length > 2) { $(this).prop(‘checked’, false); return false; } }); });)
With the filter code it’s all i need to do? Seems to work fine 😉