#mlo300
1 messages · Page 1 of 1 (latest)
Hello, I'd recommend looking through our docs, we have a lot of ways to do this from custom code to low-code to no-code solutions https://stripe.com/docs/payments?payments=popular
But in this doc you sent me does it use the standard stripe checkout?
I also don't see any reference, regarding connecting via connect
The "Online" tab of that doc links to "Accept a Payment" which demonstrates a basic Checkout integration and it links to many docs on Connect
https://stripe.com/docs/payments?payments=online
Though it sounds like you have already done some research here. Do you know what connect account and charge type you want to use here?
But that's not what I asked you....
I don't want the default stripe checkout but I want to use web elements and create my own
The Accept a Payment Doc also shows how to use that
Apologies, mixup in terminology. At Stripe, we call the Stripe hosted Checkout page "Checkout" and we say that users use Stripe Elements to make a custom form like you are talking about
I was asking about Connect asked because the answer to that question changes parts of how you will want to set up that custom form
I would like to do email paper and just like data, I need to create a checkout that allows me to charge different types of products for example subscriptions or a one time price.
I would like to do email paper and just like data,
I'm sorry I don't understand what you mean there. Can you explain this in more detail?
I need to create a checkout that allows me to charge different types of products for example subscriptions or a one time price.
You can do that with Elements across any of our Connect account types. I'd recommend reading our Connect docs to see what Connect account type is best for you. That doc also links to how to take payments with Connect with custom Elements forms like you want to use.
https://stripe.com/docs/connect/accounts
I have to create a custom checkout the frontend I don't want the redirect to the stripe one, but it has to be the checkout frontend on mine.
This checkout can pay different types of products already created, the types are subscription and one time products.
And some payments need to be tied to a standard connect account, so that money is split between my main account and affiliate accounts
Gotcha, the docs I linked to should help with that. As for building a custom form, this doc shows how to do that for a one time payment
https://stripe.com/docs/payments/accept-a-payment?platform=web&ui=elements
And this doc shows how to do it for a subscription
https://stripe.com/docs/billing/subscriptions/build-subscriptions?ui=elements
For Standard Accounts you will want to use either direct charges or separate charges and transfers. These docs show how to do those with one-off PaymentIntents
https://stripe.com/docs/connect/direct-charges
https://stripe.com/docs/connect/separate-charges-and-transfers
And this doc shows how to do direct charges with a subscription
https://stripe.com/docs/connect/subscriptions
So what you want to do is possible, but you'll definitely need to read though the relevant docs and combine code from them
every payment I make with a custom payment form on my site do I have to send my client_secret to them?
Hello! I'm taking over and catching up...
That's how the approached in the guide linked above covers, yes. There are alternatives if you don't want to do that, like this for example: https://stripe.com/docs/payments/accept-a-payment-deferred
are you open tomorrow?
We won't be available here tomorrow, no, but you can reach out to Stripe support at any time: https://support.stripe.com/contact/email
I didn't understand one thing about payments through connect, about subscrption
What's up?
I would like to understand how to split a subscription that the customer pays, the monthly subscription of 100 euros and each time pays 20 euros to the connect and the rest to my account but in the doc I don't understand how to do that from the doc?
We have a guide for Connect + Subscriptions here that covers what you're asking about: https://stripe.com/docs/connect/subscriptions
Also is there a way to not use payment intent but charge a customer directly for a product?
Not sure I understand, can you provide more details?
When I do payment intent on stripe I only have amount available and not price id how could I use a priceId?
Ah, gotcha. I recommend you watch this short video, it should help clarify things: https://stripe.com/docs/payments/tour#payment-objects
Let me know if that helps or not.
I simply have to charge a user for a one time product I don't know how I can fix this
You can't use a Payment Intent. Payment Intents are low level objects that aren't directly compatible with Products.
You would need to use Checkout or an Invoice.
Or use a Payment Intent to charge the a specific amount without using a Product.
i developed my own custom checkout using stripe web elements