I'm trying to increase the max year on my form (using the Date Drop Down method, not Date Picker). Right now, my max year is next year (2014) but I'd like it to be at least 10 years out (2023, would be ideal). I tried adding the following code to my functions.php file, but it still didn't work:
[php]
add_filter("gform_date_max_year", "set_max_year");
function set_max_year($max_year){
return 2023;
}
Any suggestions? I really need this option to work. Is this something that involves editing any jQuery files?
Thanks in advance.