Skip to content

Instantly share code, notes, and snippets.

@dennisnissle
Created March 20, 2024 15:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dennisnissle/646027d8e7b4d3a0cb5292ef0a3766c3 to your computer and use it in GitHub Desktop.
Save dennisnissle/646027d8e7b4d3a0cb5292ef0a3766c3 to your computer and use it in GitHub Desktop.
Register a custom min age
<?php
add_filter( 'woocommerce_gzd_age_verification_min_ages', function( $min_ages ) {
$min_ages[14] = '>= 14 Jahre';
return $min_ages;
} );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment