#Björn
1 messages · Page 1 of 1 (latest)
Hi! Let me help you with this.
This is the right place 🙂
For that you need 2 products, one one-time and another recurring. Then you can add them both to items or line_items in your Subscription or Checkout Session.
Thank you for the quick reply Vanya! Ok, so there is no way to bundle the two prices into one product? We are afraid it could be missleading to the end user that they buy two products (when in reality they only buy one)?
Sorry, this is possible only in Checkout Session. Are you using Checkout Session?
The key is naming, if you describe it to your user in a transparent manner they will understand.
You can call it "One-time signup fee" or something.
Ok! For the annual product, is there a way to start the billing after a year by not using the trial functionality?
we are using checkout session
PHP: use Stripe\Checkout\Session as CheckoutSession;
Why don't you want to use the trial?
Because we want to clean up the checkout to be easier to understand for the end user. But I guess we need to re-think our naming of the products then. You said its possible to bundle prices with checkout session? Is there a guide on that? 🙂
For transperncy, what we have now is 2 products: product1 - one time charge and then product2 - annual cost with 365 day free trial. Dream scenario is 1 product with onetime charge and then another annual price
So the checkout says "due now: $XX and then $YY annualy after the first year"
Hi! I'm taking over this thread.
I'm not sure I follow your question. Can you try to summarize it?
Hi soma! Sure, Is there a way to create a product that has a one time cost and after that another annual cost? For example a product cost $40 upon purchase and then cost $20 every year after that.
And you want to do that with a Checkout Session?
If so, yes. you would just pass two prices when creating the Checkout Session: a one time price + a recurring price.
ok, cool! thank you!