sequra_get_nin

Hook Filter

Allow changing NIN of the shopper.

Description

This filter allows set the NIN (National Identification Number) of the shopper.

ParameterTypeDescription
$ninstringThe NIN
$orderWC_OrderThe order or null

Changelog

VersionDescription
3.0.0Introduced

Usage Example

add_filter('sequra_get_nin', function($nin, $order){
  $nin = '23232323T'; // Modify the default value
  return $nin;
}, 10, 2);