#Asad
1 messages · Page 1 of 1 (latest)
Hello Asad, we'll be with you shortly! Below are links to other discussions we've had with you in the past week in case you want to review that information. If your question is related to one of these previous discussions, please provide a comprehensive summary of the current state and what you need help with now. We help many users simultaneously, so a summary allows us to resolve your issue as soon as possible.
• Asad, 7 days ago, 20 messages
Could you elaborate? which domain and payment methods?
i want to enable ALI PAY/APPLE PAY to the payment checkout page, in stripe they prompt me to setup domain
Here is the reference
Which integration do you use? Checkout or PaymentElement?
checkout
Then you don't need to register ApplePay domain
That's Chrome
If you open in Safari with a logged in Apple Account, you will see the button
Also i want to enable Klanra payment method, why it's not showring up?
Can you share the Checkout URL here?
Hi
Sign in to the Stripe Dashboard to manage business payments and operations in your account. Manage payments and refunds, respond to disputes and more.
Please ho can I add an input to the form to collect user email.
When you created this Checkout Session, you only specified card
payment_method_types: {
0: "card",
},
You would want to include klarna
the code you're refering is recieved after payment, i want to show payment method kalrna on checkout page
No it's before Payment, to POST /v1/checkout/sessions
Can you provide a newer Checkout Session URL?
Sign in to the Stripe Dashboard to manage business payments and operations in your account. Manage payments and refunds, respond to disputes and more.
I still only see card here
You need something like this
payment_method_types: ['card', 'klarna'],
Please open this link on your Dashboard
Yeah, what do you see the payment_method_types there?
the one you mentioned
Yeah so you only see payment_method_types : ["card"] that you sent, correct?
That means probably your code sending it wasn't updated, or you were running a different code