Thread Starter
wpra
(@wpra)
Also is there a way to limit the amount of subscriptions that go through. For example, if I decide to open 10 new subscriptions, can the form or button say out of stock when those spots are taken up and deny any others that would try to submit payment after its out of stock?
Hello @wpra,
1. It is common to place checkboxes under action buttons. If you want to change the order, that would require using customm CSS code.
2. Direct Stripe recognize the email address of the logged in user, if you want an email field to appear in the Stripe modal form, use a browser session where you are not logged in WordPress.
3. The payment transaction takes time to proceed, this shows something is happening, you can replace it using the ‘direct_stripe_processing_transaction_spinner’ filter hook, you can find more about Direct Stripe hooks at https://newo.me/direct-stripe-actions-and-filters-hooks/
4. I’m afraid I don’t get the question
5. I’m glad you found what was going wrong
6. Direct Stripe doesn’t currently work with Apple Pay, Google Pay, Microsoft Pay
For the question in the second message, ths is not a feature of Direct Stripe. I believe you can configure a Stripe Pricing plan to have a limited amount but that would require sending an extra API call and message from Stripe to your website. This is not currently possible.
I hope this will help.
Best wishes,
Thread Starter
wpra
(@wpra)
I appreciate your answers to my questions.
So the 4th question, there seems to be a possible glitch or bug as when the payment is confirmed and after a green check appears, a white box about 1/5th of the monitor screen on the bottom left hand corner appears with the text “Processing…” and the letters fill up with color to show that it’s going through. Is there a way to remove this from popping up?
Additionally how can I verify the authenticity of a payment with safe guards such as not accepting duplicate customers, charges, or emails with the same information. Things of that nature?
Also not sure if this is due to me being in test data mode, but in this mode stripe accepts any data being passed right?
On the stripe dashboard under “customers”, the relevant billing information like the address tied to the customer’s input is stated as “None”. How come the billing information doesn’t appear here?
Hello @wpra,
The green check that appears in the Stripe modal form only indicates that the values entered in the form are correct but the payment is not processed and actually not even started as this indicates the transaction starts.
The processing text indicates the transaction is being processed… You can remove/edit it using custom code as indicated in the previous message.
The management of customers is to be done by you, Direct Stripe alows to process payments, subscribtions and donations using Stripe but does not manage the data.
Do you have enabled the “Billing’ option in the button settings in order to collect the billing information in the Stripe modal form ? This is the data that will appear as trhe billing address.
Best wishes,