#MMunir-customize-checkout
1 messages · Page 1 of 1 (latest)
Unfortunately I am not seeing a video for it on our channel. Is there a part of that process you are having trouble with?
when someone makes purchase do stripe makes some unique order id so if i can show that on success page so they can follow up on it
For that, you can present them with either the Checkout Session's ID or its PaymentIntent's ID
i want something like your order is successfull and order id displayed
If you put {CHECKOUT_SESSION_ID} in your success_url, that part of your URL will be replaced with the ID for the Checkout Session when your user is redirected success_url="http://yoursite.com/order/success?session_id={CHECKOUT_SESSION_ID}",
ok will try this thing, few more question if you dont mind in same caht
Of course, happy to help
like i am using stripe pre built checkout and it says card holder name and if someone puts wrong name so will it effect me in some way
and we basically sell service where we pick them up from certain place like taxi and in pre built if i option for delivery can i change the name to pick up location
If someone puts in the wrong card name, their transaction is a bit more likely to be declined by their bank. They still try again with another card or their correct name on the Checkout page though
Can you clarify what you mean on that second part? Where do you want to put the pickup location?
2nd part shipping option is presented in prebuilt but it says shipping can i rename it
one more question in prebuilt it even ask for country or region what is it is it asking customer country or the place where they are spending
Unfortunately you can't rename the shipping section in Checkout. You can keep it if you are okay with that name. Otherwise, you can collect the Pickup Location on your own custom form before creating the Checkout Session and provide that data to the Checkout Session when you create it
https://stripe.com/docs/api/checkout/sessions/create#create_checkout_session-payment_intent_data-shipping
https://stripe.com/docs/api/checkout/sessions/create#create_checkout_session-shipping_address_collection
I think the field you are looking at is for the card's region or country
so it is for the bank section to verify
can i get the information in meta because it will also help to get to know there nationality or place where they are comming frm
To clarify: you are asking if you can get the information they put in for the region on their card?
yes
I think so. Once they have completed the Checkout Session, there will be a PaymentMethod attached to it and you can see the billing details on that payment method https://stripe.com/docs/api/payment_methods/object