Hi @theishenriksen,
Thanks you for this and your review ??
Someone else requested the year only a while back and I did start looking at how to make it possible, but then other fixes and work got in the way of it.
I’ll revisit it as soon as I get the next update out, which should be around the time WP5 is released later this month – or when the release candidate is available.
For auto submit, that’s certainly possible I think. Just a simple event listener something like this should do the trick:
jQuery('body').on('keyup', '#age-gate-y', function(e){
if(e.target.value.length === 4){
jQuery('.age-gate-form').submit()
}
});
I’ll add it to my tasks for a future update
Thanks
Phil