• Hi,

    i think is not many 120years old ppl ??
    Its possible can blocked enter date below example 1900 year ?

    Thnx

Viewing 1 replies (of 1 total)
  • Plugin Author Phil

    (@philsbury)

    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.
Viewing 1 replies (of 1 total)
  • The topic ‘Can block date below 1900 year ??’ is closed to new replies.