• Hello,

    I have a woocommerce site and I’ve been looking for plugins available for both word press or woocommerce that denies anybody under 18 to register. The age verification gate way plugins aren’t really enough.

    I’ve looked for awhile and I can’t find anything. So I’m assuming that it’s a custom code that needs to be added to the registration form. Does anybody have any idea on how I’d start about doing this?

Viewing 1 replies (of 1 total)
  • Moderator bcworkz

    (@bcworkz)

    The registration form is actually part of form-login.php in /templates/myaccount/. You can override templates by copying them to your theme into a particular directory structure. Details are in the form’s code page comment header.

    Add whatever content you want to verify age on the template you copied to your theme. To process the form fields submitted, hook ‘woocommerce_registration_auth_new_customer’ filter and return true if things checkout, otherwise return false. The filter is applied in /includes/class-wc-form-handler.php, line 916.

Viewing 1 replies (of 1 total)
  • The topic ‘Restrict Certain Age from registering on woo commerce site.’ is closed to new replies.