{% from "_includes/forms" import autosuggestField, textField, passwordField, lightswitchField, editableTableField, booleanMenuField %}
If you wish to use a custom form as outlined in the documentation, leave each toggle in this section disabled.
{{ lightswitchField({ label: 'Insert the Default Form'|t('commerce'), id: 'insertForm', instructions: 'Insert the default form when cart.gateway.getPaymentFormHtml is called in the checkout template.', class: 'ltr', name: 'insertForm', errors: gateway.getErrors('insertForm'), on: (gateway.insertForm is defined) ? gateway.insertForm : "" }) }} {{ textField({ label: 'Payment Button'|t('commerce'), id: 'paymentButton', instructions: 'Customize the text that appears inside the submit button at the bottom of the form.', class: 'ltr', name: 'paymentButton', value: gateway.paymentButton, errors: gateway.getErrors('paymentButton') }) }} {{ lightswitchField({ label: 'Remove Credit Card Data Before Submission (Accept.js)'|t('commerce'), id: 'disableAcceptData', instructions: 'Only applies when using the default form display in conjunction with Accept.js. See the documentation for additional details.', class: 'ltr', name: 'disableAcceptData', errors: gateway.getErrors('disableAcceptData'), on: (gateway.disableAcceptData is defined) ? gateway.disableAcceptData : "" }) }}Note: If Accept.js is enabled, a separate profile will be created for each payment source stored inside Authorize.net. See the documentation for additional details.
Create a ticket in Github, or email our support team at hello@digitalpros.co.