#Hiroshi - Hi
1 messages ยท Page 1 of 1 (latest)
i have a concern about stripe iDeal
i don't know if there is a way to remove the name
happens that my customers don't want to put their names
the thing is
i asked them for putting some dummy data
but they are not ok with that ๐ฆ
So...your users are not okay with using dummy data?
nope
they want to remove the "Name" input
because they don't need it
and stripe elements are kinda different based on implementation
because i can't see webhooks
because i can't see webhooks
I'm not clear on what webhooks have to do with this but let's focus on the Name input
oh ., i mean webhooks after the payment
yes, is there a way to remove the name input
without using stripe elements?
Hello! Taking over and catching up... so you don't want to use Stripe Elements, or you do?
nope
because i will remove the whole implementation
and honestly i had some issues with that
basically the implementation is kinda different to stripe.checkout({
btw, im using nodejs
Not sure what you mean. I asked if you don't want to use Stripe Elements or if you do want to, and you said nope, but what does that mean? Do you or do you not want to use Stripe Elements?
no
i don't want to use stripe elements
the only solution they told me in the support email, is to use stripe elements
but i need to reimplement everything
i tried
but there are several parameters that are different compared to the checkout session implementation.
Gotcha. So you're trying to create an iDEAL Payment Method using the API and you're running into problems?
ye
What specific problem are you running into?
because the client don't want the "name" input
when i asked for support, they told me that i need to use stripe elements for removing that field
i tried using stripe elements but idk what i'm doing wrong
I'm not sure I understand. You said you don't want to use Stripe Elements, so why do you keep talking about it?
put line_items
ok again in order hehe
i used stripe checkout session for iDeal payments
it worked fine โ
my client don't want the "name" input , i asked for put dummy data, but they don't want
2.- I asked support for removing that field , and support told there is not possible
so, support asked me for use stripe elements instead (for removing that field)
Gotcha. So yes, there's no way to remove the name field from Checkout, but you can instead use Stripe Elements to build a custom payment page that does not include the name field. The guide for doing that is here: https://stripe.com/docs/payments/ideal/accept-a-payment?platform=web
ye, i tried it, but there is no place for putting line_items, like the stripe checkout sessions
is kinda different
Yeah, you're not using Checkout, so there are no line items, at least not on the Stripe side. You would create/display/manage line items on your end.
oh, so
i just need to calculate the total price
put into my backend using the sdk, and create the item list in my frontend. right?
Yep!