• I would like to add a button on dropdown option to go back to previous page for those who are under aged.

    Is there an anyway to add?

    Thanks.

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

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

    (@philsbury)

    Hi @davidpark0214,

    You could add a button with something like this:

    add_filter('post_age_gate_custom_fields', function ($content) {
        $content .= '<button class="age-gate-submit" onclick="javascript:history.back();">Back</button>';
        return $content;
    });

    However keep in mind, back may not be part of your site as it could be a search engine or direct input, might be better to send them to the Home Screen to be sure you’re keeping them around!

    Thanks
    Phil

Viewing 1 replies (of 1 total)
  • The topic ‘When using dropdown can we add 1 more button to go back for people are under 18?’ is closed to new replies.