Skip to content

Tag: stripe-payments

Stripe PaymentIntents PHP, setting price

Basically, the problem im having is between php and javascript, where my php function is createPayment() I can’t put javascript variable so I can’t enter the amount ($) of the order I’m really stuck on what to do. Maybe a post event to the server to create payment via javascript but I don&#8…

Stripe API Update DRAFT invoice for subscription (PHP)

I am using PHP and have a webhook generated with invoice.created. When the invoice is created, Stripe lets the draft invoice sit there for about an hour which gives us time to edit the invoice or adjust it. I use this time to check the database (via webhook) to see how many referrals this person has in the sy…

Stripe checkout: description in dashboard instead of pi

Can anyone help me? I migrate form v2 to v3 checkout. how can I send my custom description order in stripe dashboard description column? now I get only the payment id pi_1IrhQALKfdoxxl3X07seJ5anto with old API by description I would do: with the new API : Thank you Answer according to the stripe documentation…

Trigger Stripe SCA redirection for authentication

I have this stripe file StripePayment.php and i am charging the card like this This code is able to charge cards but can’t charge cards where 3D/SCA is required i.e European cards. My question, is there a way i can request stripe to redirect the user to the card issuing bank for authentication so that t…

Stripe – adding new customers to an existing plan?

I have a simple form that registers users. The form also uses Stripe to process payments. Stripe’s API is super clean but for some reason I can’t seem to figure this out. Please tell me if i’m doing something wrong here. Right now I’m in a test account with Stripe, but every time I reg…