#alecpope_unexpected

1 messages ¡ Page 1 of 1 (latest)

modest garnetBOT
#

👋 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/1298931884088361022

📝 Have more to share? Add more details, code, screenshots, videos, etc. below.

Below are links to other discussions we've had with you in the past week in case you want to review that information. If your question is related to one of these previous discussions, please provide a comprehensive summary of the current state and what you need help with now. We help many users simultaneously, so a summary allows us to resolve your issue as soon as possible.

round osprey
#
    parameters := stripe.SubscriptionParams{
        Customer: &customerId,
        Items: []*stripe.SubscriptionItemsParams{
            {
                Price: &SubscriptionPriceId,
            },
        },
        PaymentSettings: &stripe.SubscriptionPaymentSettingsParams{
            SaveDefaultPaymentMethod: stripe.String(string(stripe.SubscriptionPaymentSettingsSaveDefaultPaymentMethodOnSubscription)),
        },
        PaymentBehavior: stripe.String("default_incomplete"),
    }

    parameters.AddExpand("latest_invoice.payment_intent")

I return the clientSecret and subscriptionId to the user and display Payment Elements, but it only show this:

#

What I would expect, is like in the documentation/guide:

civic pulsar
#

Hi, let me help you with this.

modest garnetBOT
civic pulsar
#

Hmm, I think this is just a custom component for the demo.

#

You will need to build this yourself.

native mica
#

Hey, taking over here. Let me know if there's any follow-up Qs I can answer!

round osprey
#

Oh okay interesting, thought it was integrated. There is also no component I could use to display product info by any change?

native mica
#

Checking if this is something new will come soon in PaymentElement...

native mica
#

Yes I'm checking internally for further details about the preview, but for now it's probably you that should build it in your website and not natively mounted by stripe js with PaymentElement

round osprey
#

Alright, thanks for you help! Will implement it on my own