Hi @p3k074,
From v2.0.5 (just released) you can change this with a filter, you can add the following to your functions file in the theme or a custom plugin:
add_filter('age_gate_select_years', 'my_minimum_year', 10, 1);
function my_minimum_year(){
return 1950; // or whatever you want
}
This will update the minimum on the dropdown, and add validation for the text input so people cannot enter something under that
I’ll look to possibly add it as an option in the settings at a later date, but this should see you good until then.
Thanks
Phil
-
This reply was modified 6 years, 5 months ago by Phil.