#martin_paymentmethod-billingdetails
1 messages ยท Page 1 of 1 (latest)
๐ Welcome to your new thread!
โฒ๏ธ We'll be here soon! Typically we respond in a few minutes, but sometimes we might take a bit longer if the server is busy or if you have a particularly tricky question. Thank you for your patience!
โฑ๏ธ We automatically close idle threads, which makes them read-only. Make sure you stick around to chat in realtime! If this thread is closed and you have another question you'll need to start a new thread.
๐ This thread will always be available, even after it's closed. You can find it again using Discord's search, or you can save this link: https://discord.com/channels/841573134531821608/1214243524955086888
๐ Have more to share? You can add more detail below, including code, screenshots, videos, etc.
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.
- martingaibisso, 6 days ago, 14 messages
Hello
Hi @alpine moss . this is the button i'm referring to
Hmm do you see that in Chrome? And is there a live card in the customers wallet in this case?
yes, chrome.
idk about the card, but we are not getting that button when no card is present, we just dont get any button
thats the weird part
we can not reproduce from our end
but end users keep complaining
Thanks, give me a moment to check
thanks
We are still looking, couple more mins
@lethal lotus any chance this is happening on mobile chrome?
uhm, doesn't looks like it, i think inc mode puts the incognito logo on the tabs
Hi ๐
I'm stepping in as my colleague needs to go. We are still actively investigating this.
Stripe Link shows for me in inco mode
Thanks for that detail!
Do you happen to know which countries these requests are being tested from? And what is your end goal here? Do you want to hide this button?
i want to understand why is it showing and prevent it from showing as the button obviously does not work
and it's showing for live mode users
request was from UK probably
could it be a country restriction?
Okay, do you know for certain what country(ies) it was occurring?
maybe they were using a VPN, that i don't know
When you say it doesn't work, what do you mean?
You can explicitly disable this button by passing browserCard in the disableWallets parameter when creating a PaymentRequest object: https://docs.stripe.com/js/payment_request/create#stripe_payment_request-options-disableWallets
button doesn't do anything
oh thanks. if that will disable that button from showing that should be enough
This will not show anything at all in terms of showing a digital wallent. You can check for this in the response from .canMakePayment https://docs.stripe.com/js/payment_request/can_make_payment, which will return null. Then your front-end can handle that however you determine works best for you.
thanks, would be nice to be able to reproduce though so we can be sure. do you know any way to trigger that behavior?
Yeah we are having a very hard time triggering this. Including disabling Link.
can i ask you another question? We have radar for teams and we are trying to include as much data as possible for radar fraud detection. We have a Payment Element integration and radar requests email, name and billing addrss for better performance.
do i need to create a customer with those details before PI or can i send them somehwere along the PI creation?
i don't see a field for that in PI create api endpoint
You can combine the Payment Element with the Address element to provide those details when confirming a Payment Intent
https://docs.stripe.com/elements/address-element/collect-addresses
i already have the data
i just want to send it behind curtains
without creating a stripe cust if possible
You can pass it via the payment_method_data.billing_details parameter when creating/confirming your Payment Intent
https://docs.stripe.com/api/payment_intents/create#create_payment_intent-payment_method_data-billing_details
Great! I think that should provide you what you are looking for.