Skip to content

Instantly share code, notes, and snippets.

@NiklasHogefjord
Created November 30, 2017 21:46
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 NiklasHogefjord/4c8fa9736a8900bb1f39807042e9e770 to your computer and use it in GitHub Desktop.
Save NiklasHogefjord/4c8fa9736a8900bb1f39807042e9e770 to your computer and use it in GitHub Desktop.
<?php
// Edit the order data sent to Klarna to make 'Date of birth' a mandatory field in the KCO iframe
add_filter('kco_create_order', 'my_kco_create_order');
function my_kco_create_order( $create ) {
$create['options']['national_identification_number_mandatory'] = true;
return $create;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment