#noam6972
1 messages · Page 1 of 1 (latest)
You can only configure one cross-sell per product
What integration would I use so that customers can select multiple add-ons or cross-sells? Does Stripe Elements or Payment element (https://stripe.com/docs/payments/payment-element) allow for this?
unfortunately, none of our products support multiple add-ons or cross-sells at the moment. You'll probably want to implement that yourself, then let the customers select the items, and then pass in those items (Prices) to the Checkout Session
sorry If I sound like a complete noob, but do you guy's have any tools that deal with integrating something where customers can select multiple items and it's integrated into the website? I'm not exactly talking about the pricing table, but more so they can select between a decent sized list
Or this would be something I would have to build myself?
it's something you need to build yourself. Alternatively, you can look into platforms like Shopify that possibly has most of these features pre-built for you and you can choose the specific payment gateway that you prefer to use
Sorry for more questions, I guess I see examples where people are able to select a list of products on on their website and I know it's powered by stripe? Would you have any idea how I would implement something like this?
that's not a Stripe hosted page. The only bit on that page that is from Stripe is the field that collects the Payment Information i.e. Card Number, MM/YY and CVC.
the rest of the page is implemented by the developer themselves
Thanks for the clarification, do you know how i'd implement a collection field like that from stripe?
That field is what we call the Card Element, and we strongly recommend using the Payment Element instead : https://stripe.com/docs/payments/payment-card-element-comparison I'd suggest going through this guide : https://stripe.com/docs/payments/accept-a-payment?platform=web&ui=elements, and you can download this sample to get up and running quickly : https://stripe.com/docs/payments/quickstart
Learn more about the Payment Element and Card Element so you can decide which to use in your integration.
Got it, Thank you so much. Would using this method allow people to select multiple items on the website itself if we built the part where they could choose which items they want?