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.
| Parameter | Type | Description |
|---|---|---|
$dob | string | The date of birth |
$order | WC_Order | The order or null |
Changelog
| Version | Description |
|---|---|
| 3.0.0 | Introduced |
Usage Example
add_filter('sequra_get_dob', function($dob, $order){
$dob = '2000-01-01'; // Modify the default value
return $dob;
}, 10, 2);Updated 6 months ago