REMINDER
SOLVED Problems with a payment page
-
Hello,
I need your help...
I need to build a payment page for an association.
There are many parameters such as: choice of currency, choice of amount and choice of payment method (in this case Paypal or Stripe) and finally choice of payment recurrence (single or recurrent)This page poses me many problems of integration.
1-First of all, could you remind me the element to integrate for the currency?
(B_01)2-Idem : element to integrate for the choice of the 'free' amount ?
(B_02)3-Stripe/Paypal : our accounts are open and active for years.
Is there a validation to do on your side and where to find the necessary resources for the parameterization on the forum?Thank you in advance
Lionel
(B_03) -
@lionel-p said in Problems with a payment page:
1-First of all, could you remind me the element to integrate for the currency?
-
For the currency I recommend a drop down menu (from cloudbackend inputs) where you add in the dropdown the list of currencies you want to accept
-
it should be a numeric input (from cloudbackend inputs) since you are asking for an amount
-
You will need to create a cloud function to process stripe payments in a custom way matching your UI, for that you will need to create a cloud function using the stripe NPM package (https://www.npmjs.com/package/stripe)
-