diff --git a/htdocs/stripe/admin/stripe.php b/htdocs/stripe/admin/stripe.php
index 06f417e48df..77c8d9a03b2 100644
--- a/htdocs/stripe/admin/stripe.php
+++ b/htdocs/stripe/admin/stripe.php
@@ -390,6 +390,20 @@ if ($conf->global->MAIN_FEATURES_LEVEL >= 2) { // TODO Not used by current code
print '';
}
+// Activate Klarna
+if ($conf->global->MAIN_FEATURES_LEVEL >= 2) { // TODO Not used by current code
+ print '
| ';
+ print $langs->trans("STRIPE_KLARNA").' | ';
+ if ($conf->use_javascript_ajax) {
+ print ajax_constantonoff('STRIPE_KLARNA');
+ } else {
+ $arrval = array('0' => $langs->trans("No"), '1' => $langs->trans("Yes"));
+ print $form->selectarray("STRIPE_KLARNA", $arrval, $conf->global->STRIPE_KLARNA);
+ }
+ print ' '.$langs->trans("ExampleOnlyForKlarnaCustomers").'';
+ print ' |
';
+}
+
// Activate Bancontact
if ($conf->global->MAIN_FEATURES_LEVEL >= 2) { // TODO Not used by current code
print '| ';
|