#ocardenas

1 messages ยท Page 1 of 1 (latest)

clever geodeBOT
flat bane
#

Hey there, what are you having trouble with in your integration?

In future, try to include your question in your initial message ๐Ÿ™‚

rancid trout
#

Ok soryy

#

๐Ÿ˜Š

#

how I can change the design of the payment element? can I remove the cards logos?

#

and other question how I can know if my payment element is valid before go to confirmPayment?

#

Thanks a lot

flat bane
rancid trout
#

Great!

#

Thanks a lot!

flat bane
#

NP!

rancid trout
#

Hi I have other

#

doubt

#

sorry

#

I want collect the name and email that the person that payment

#

so I'm making this

#

const { error } = await stripe.confirmPayment({
elements,
confirmParams: {
payment_method_data: { billing_details : {
name : form.first_name + " " + form.last_name,
email : form.email
} },
// Make sure to change this to your payment completion page
return_url: getReturnUrl(),
},
});

#

my question is where I can see the billing_details?

#

thanks

#

๐Ÿ˜Š

flat bane
#

That information ends up on the payment method object in the billing details:

rancid trout
#

great

#

but in the platform

#

the stripe

#

where I can see this data?

flat bane
#

What do you mean? That's part of our API

rancid trout
#

nop

#

In the dashbord

#

on my account of stripe

#

in the website

flat bane
#

Oh, on the payment method used for the payment, then

rancid trout
#

Great!