👀Basic Payment Forms Reference

Including on a Page

To include a Basic Payment Form on the Page, use the same syntax as a standard form:

{%- include 'form', id: '10', layout: 'default' -%}

Form Layouts

Authorize.net Specific Instructions

PayPal Specific Instructions

ecommerce/basic_payment Liquid Tag

What is it?

This is used to output payment fields in a basic payment form.

Where to use?

You should include this inside a basic payment form layout.

How to use?

{%- include 'ecommerce/basic_payment'
  amount: '500'
  currency: 'usd'
  id: '10'
-%}

s_e_amount Field

This HTML input field with the ID s_e_amount can be used to modify the amount which will be paid when the Form is submitted, see:

Payment Confirmation Layouts

{% include 'ecommerce/payment_details', layout: 'default' %}

Last updated