Last active
August 18, 2017 13:16
-
-
Save NiklasHogefjord/f84c66c7f17f4d876b08e9a020e7a87b to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* WooCommerce - Klarna payment gateway | |
* Filter Create order for making date of birth a mandatory field in Klarna Checkout iframe. | |
**/ | |
// New order ($create) | |
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