diff --git a/classes/class-kco-fields.php b/classes/class-kco-fields.php index 28e79760..972ae995 100644 --- a/classes/class-kco-fields.php +++ b/classes/class-kco-fields.php @@ -246,7 +246,7 @@ public static function fields() { 'B2CB' => __( 'B2C & B2B (defaults to B2C)', 'klarna-checkout-for-woocommerce' ), 'B2BC' => __( 'B2B & B2C (defaults to B2B)', 'klarna-checkout-for-woocommerce' ), ), - 'description' => __( 'Select if you want to sell both to consumers and companies or only to one of them (available for SE, NO and FI). You need to contact Klarna directly to activate this with your account.', 'klarna-checkout-for-woocommerce' ), + 'description' => __( 'Select if you want to sell both to consumers and companies or only to one of them (available for SE, NO, FI and DE). You need to contact Klarna directly to activate this with your account.', 'klarna-checkout-for-woocommerce' ), 'default' => 'B2C', 'desc_tip' => false, ), diff --git a/classes/requests/helpers/class-kco-request-options.php b/classes/requests/helpers/class-kco-request-options.php index 6789dbca..f6614139 100644 --- a/classes/requests/helpers/class-kco-request-options.php +++ b/classes/requests/helpers/class-kco-request-options.php @@ -118,7 +118,7 @@ private function get_nin_validation_mandatory() { */ private function get_allowed_customer_types() { - if ( in_array( $this->get_purchase_country(), array( 'SE', 'NO', 'FI' ), true ) && isset( $this->settings['allowed_customer_types'] ) ) { + if ( in_array( $this->get_purchase_country(), array( 'SE', 'NO', 'FI', 'DE' ), true ) && isset( $this->settings['allowed_customer_types'] ) ) { $customer_types_setting = $this->settings['allowed_customer_types']; switch ( $customer_types_setting ) {