WebSite X5Help Center

 
Mior Ahmad Ridzuan A.
Mior Ahmad Ridzuan A.
User

Stripe Payment Gateway  en

Author: Mior Ahmad Ridzuan A.
Visited 2312, Followers 1, Shared 0  

Dear All,

Who knows how to integrate Stripe Payment Gateway into WebsiteX5 Pro 14? Please help me with step by step procedure. Thank you in advance.

Posted on the
2 ANSWERS
Incomedia
Claudio D.
Incomedia

Hello Mior Ahmad Ridzuan A.,

Unfortunately I cannot help you with the use of custom code, but if you have any doubts or issues on how to add them in the pages you made with WebSite X5 you can ask me. You can also wait to see if someone of the community of Help Center can help you.

The variables you can use on the custom HTML payment code are the following ones which then are filled out automatically by the program:

[ORDER_NO]
[PRICE]
[NAME]
[LASTNAME]
[ADDRESS1]
[ADDRESS2]
[CITY]
[STATEREGION]
[COUNTRY]
[ZIPPOSTALCODE]
[EMAIL]
[PHONE]

Many thanks!

Read more
Posted on the from Claudio D.
Mark Fletcher
Mark Fletcher
User

I am an amateaur at this and experimenting, but,

From Stripe Website:

<form action="/your-server-side-code" method="POST">
<script src="https://checkout.stripe.com/checkout.js" class="stripe-button"
data-key="pk_test_AeAtUZD2oMaKExhqUZNixzo0"
data-amount="999"
data-name="Demo Site"
data-description="Widget"
data-image="https://stripe.com/img/documentation/checkout/marketplace.png"
data-locale="auto"
data-zip-code="true"
data-currency="gbp">
</script>
</form>

You sign up for your own credentials in bold above and then I have used this:

Paste this in SHOPPING CART -> ORDER MANAGEMENT ->ADD PAYMENT TYPE LIST->TYPE-> PAY NOW CUSTOM CODE

<form action="/your-server-side-code" method="POST">
<script
  src="https://checkout.stripe.com/checkout.js" class="stripe-button"
  data-key="pk_test_AeAtUZD2oMaKExhqUZNixzo0"
  data-amount=[PRICE, 100, ###.@@]
  data-name="Your Store Name"
  data-description=[ORDER_NO]
  data-image="https://stripe.com/img/documentation/checkout/marketplace.png"
  data-locale="auto"
  data-zip-code="true"
  data-currency="gbp">
</script>
</form>

I am still testing, but hope this helps

Read more
Posted on the from Mark Fletcher