Payment Button
Implementation
<form method="POST" action="https://shop.rexdigital.group/checkout">
<!-- Find "YOURCLIENTID" by going to your store,
clicking on the cogwheel(bottom left),
and clicking on the "developer tab". -->
<input name="client_id" type="hidden" value="YOURCLIENTID">
<!-- Now we'll add the products we want to add to the cart for the customer,
the plan id can be found by using the products api, or by navigating to,
your products in the shop, and looking at the plan
(The place where you set the price). -->
<input name="products[0][plan_id]" type="hidden" value="1337">
<button type="submit">Go to checkout</button>
</form>Product Quantity
Multiple Products
Optional Fields
Custom Input
Last updated