• Hello,

    I’m trying to find a way to start the year field from 2003

    Placeholder > Year > 2003

    I don’t want a blank field, is there a way to do it ?

    The page I need help with: [log in to see the link]

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

    (@philsbury)

    Hi @oscartiberghien,

    There’s not an elegant way to do this right now, so you can use a bit of javascript to set the value.

    Add this to your functions.php and it should work:

    add_action('wp_footer', function () {
        ?>
        <script>
            var el = document.getElementById('age-gate-y');
            if (el) {
                el.value = 2003;
            }
        </script>
        <?php
    });

    Thanks
    Phil

Viewing 1 replies (of 1 total)

The topic ‘Start Year date from 2003’ is closed to new replies.