The tools here are not related to Webflow's native ECommerce platform. They are simple payment link tools to provide crude payment capability through services like Paypal and Windcave.
Currently we support two providers-
Windcave
Paypal
Usage Notes | Windcave
Demonstration
Windcave Example
Place in the before BODY custom code area.
<scriptsrc="https://cdn.jsdelivr.net/gh/sygnaltech/[email protected]/dist/webflow-commerce.js"></script><script>var payment =newwindow.sa5.WindcavePayment();// Configure the payment linkpayment.userid ='user id';payment.amount ='10.00';payment.currencyname ='USD';payment.txndata1 ='';payment.txndata2 ='';payment.txndata3 ='';payment.email ='[email protected]';// Do something with the payment linkconsole.log(payment.generateUrl());</script>
Usage Notes | PayPal
PayPal Example
<scriptsrc="https://cdn.jsdelivr.net/gh/sygnaltech/[email protected]/dist/webflow-commerce.js"></script><script>var payment =newwindow.sa5.PaypalPayment();// Configure the payment linkpayment.business ='user id';payment.amount ='10.00';payment.currencyname ='USD';payment.item_name ='widget';// Do something with the payment linkconsole.log(payment.generateUrl());</script>