#aaron-dev_docs
1 messages · Page 1 of 1 (latest)
👋 Welcome to your new thread!
⏲️ We'll be here soon! Typically we respond in a few minutes, but sometimes we might take a bit longer if the server is busy or if you have a particularly tricky question.
⏱️ We close idle threads, which makes them read-only. Once a thread is closed it won't be reopened, but you can always start a new thread if you have another question.
🔗 This thread will always be available, even after it's closed. You can find it again using Discord's search, or you can save this link: https://discord.com/channels/841573134531821608/1240065100522586215
📝 Have more to share? Add more details, code, screenshots, videos, etc. below.
Hi there!
Can you provide more context regarding what you mean by "more advanced feature"? How are you currently integrating?
As for Angular, Stripe doesn't officially support Angular, nor do we publish an Angular library
What happen is the Payment link donations that dont needs code only support one time donations or needs other product to create recurring types.
Also im wondering if we can use the Payment intents to do our custom forms
With the fields that we want/need
Can you rephrase this? I don't understand your question
if you follow this guide:
https://support.stripe.com/questions/how-to-accept-donations-through-stripe
and clic to create the payment link:
the things that we can do there are pretty limited by the ui options.
- You need to choose between products/subcriptions or the customer chooose what to pay
- Then in the 1st option the amount is not available for updates in the form.
- if you chose the 2nd option the subcription are not available.
So that isn't very usefull. As the things that we can do are limited. So we wanna do some cutom form that allow different options for our customers
Got it.
So just to be clear, your goal is to allow customers to subscribe/pay for a recurring price, but they will define the recurring amount?
Yeah! We want something that the customer can choose different options
Example
Then the donate button down
Bassivally the customer can choose if the donation is for one time or recurring and choose the amount too
Then the donate button down
I'd recommend using the Pricing Table but you have to define non-zero prices. Customers can't choose their own amount in this case: https://docs.stripe.com/payments/checkout/pricing-table
I think what you likely want to do is have a page where the customer can decide between one time/ weekly/ monthly and their price, then integrate directly with the Subscriptions API and use items.price_data to create a price with the appropriate recurring period: https://docs.stripe.com/api/subscriptions/create#create_subscription-items-price_data
Or integrate directly with the PaymentIntents API and calculate the total amount on your end
In either case, you'd use StripeElements to collect payment details