Set the default calendar year
add_action(‘frm_date_field_js’, ‘limit_my_date_field’); function limit_my_date_field($field_id){ if ($field_id == ‘field_FIELDKEY1‘ || $field_id == ‘field_FIELDKEY2‘){ //change FIELDKEY1 and FIELDKEY2 to the keys of your date fields echo ‘,defaultDate:”-20y“‘; } }Continue reading