sequra_get_dob

Hook Filter

Allow changing date of birth of the shopper.

Description

This filter allows set the date of birth of the shopper.

ParameterTypeDescription
$dobstringThe date of birth
$orderWC_OrderThe order or null

Changelog

VersionDescription
3.0.0Introduced

Usage Example

add_filter('sequra_get_dob', function($dob, $order){
  $dob = '2000-01-01'; // Modify the default value
  return $dob;
}, 10, 2);