• Resolved enjindev

    (@enjindev)


    Hello,

    When a payment is made through Stripe, I want the customer’s payment method information data to be saved on Stripe. You gave me this code a few months ago, which works fine:

    add_filter('wc_stripe_force_save_payment_method', function($bool){

    if(is_checkout()){

    $bool = true;

    }

    return $bool;

    });

    However, if the customer chooses to pay through Klarna, the customer’s payment method information data is not saved on Stripe.

    Could you please tell me how to do to have the customer’s payment method information data saved for both payment by Stripe or Klarna ?

Viewing 1 replies (of 1 total)
  • Plugin Author Clayton R

    (@mrclayton)

    Hi @enjindev

    That filter is only called for payment methods that support the ability to save a payment method. Klarna doesn’t publicly support the ability to save a payment method yet.

    Kind Regards

Viewing 1 replies (of 1 total)

The topic ‘Customer’s payment method not saved’ is closed to new replies.