#staszek4957_code
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.
⏱️ We close idle threads, which makes them read-only. Once a thread is closed it won't be reopened, but you can always start a new thread if you have another question.
🔗 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/1337482595830726686
📝 Have more to share? Add more details, code, screenshots, videos, etc. below.
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.
- staszek4957_code, 1 hour ago, 3 messages
- staszek4957_best-practices, 7 hours ago, 9 messages
- staszek4957_api, 2 days ago, 8 messages
- staszek4957_code, 2 days ago, 13 messages
- staszek4957_code, 2 days ago, 14 messages
Hi hi! Sorry for the delay here - I got sidetracked.
That Setup Intent doesn't seem to have had anything else done to it besides it having been created, so I can't find anything further about it on my end.
Where are you seeing this issue? How are you creating the Payment Elements?
I have to hit the metaphorical road, but my colleague eze-dibia will be able to help you get this sorted. Cheers!
Hey there, I'm taking over this thread. Looks like you're using Payment Element. If so, disableLink is not a optional property [0]. It IS an option for the Card Element [1].
So your code should look something like this:
this.cardElement = this.elements.create('card', {
disableLink: true,
});
[0] https://docs.stripe.com/js/elements_object/create_payment_element
[1] https://docs.stripe.com/js/elements_object/create_payment_element
An alternative option is you can also disable Link via the Stripe Dashboard [0]
ok, let me check
So, when I use the Payment Element, disabling ‘checkout with Link’ can only be done via the Stripe Dashboard? right?
is this the right one?
ok, it works
I guess
You're in the right location I assume based on the screenshot you shared [0]. You just need to disable the Link. If it's disabled, you will see "Turn on" as shown in the screenshot I shared.
[0] https://dashboard.stripe.com/test/settings/payment_methods/
Sign in to the Stripe Dashboard to manage business payments and operations in your account. Manage payments and refunds, respond to disputes and more.
Also, if you have more than one payment method configuration. Make sure to disable link for the payment method configuration that you're using.
Yes, I think custom rules work if I disable some options, or also disabling this 'payment by link' completely is fine
thanks
a lot
No problem!
just one more question. Our company wants to use offline payments to charge the customer in the future (after the service has been provided). Can, for example, Link payment be used offline?