#searchableguy-payment-element

1 messages ยท Page 1 of 1 (latest)

supple fulcrum
#

Hello! Yes, setting redirect: if_required with stripe.confirmPayment is how you would disable the full-page redirect

#

This will only disable the redirect for payment method types that do not require it (like card) - there are some payment method types that need the redirect to work, and there's no way to disable that redirect with Payment Element

potent urchin
#

Yeah, I'm aware of that ๐Ÿ™‚ so no way to open in a pop up here for the rest. I'm guessing.

supple fulcrum
#

Nope - if you wanted that behavior you'd have to move off of Payment Element

#

Copying your new question here:
Let's say I want to use a custom interval for charing regular payments without user action. What would be the correct way to do this?

#

When you say a custom interval, what do you mean? Do you mean something along the lines of a subscription?

potent urchin
#

Yes.

#

But subscription pricing only support a day, week, month, and year.

supple fulcrum
#

Gotcha, so generally the correct way to do this would be with Subscriptions(https://stripe.com/docs/billing/subscriptions/overview). When providing the payment method information we'd gather as much information as possible to minimize the chance that the customer will need to come back to finish payment (but it's always possible with certain payment method types that additional actions may be needed)

potent urchin
#

Yeah but that is limited in intervals.

#

If I want a custom interval, I cannot use the pricing API

supple fulcrum
#

Well, what specific interval were you hoping for? You can have intervals that are any number of days so I'm not following how that doesn't fit what you need

potent urchin
#

Less than a day.

supple fulcrum
#

Ah - you'd have to implement that yourself then. You'd use Payment Intents combined with scheduling logic on your end to generate the payments at the correct intervals

potent urchin
ember bone
#

๐Ÿ‘‹ Taking over this thread from karbi

potent urchin
#

Would I face any issues rolling it out manually for different frequencies than days or month?

#

Because I have a feeling bank mandates or other issues may pop up when charging people very frequently in micro payments.

#

Also is it possible to have 1.5 days or 7.8 days as interval?

ember bone
#

Would I face any issues rolling it out manually for different frequencies than days or month?
This is possible depending on the bank side. Final authorisation/approval is up to the bank/issuer

#

Also is it possible to have 1.5 days or 7.8 days as interval?
You can handle it manually on your side