Checkout Finance Options
The Aurora checkout can be enabled to provide access to finance options that you have currently configured.
This article describes what changes are necessary in order to display your finance options on the checkout.
Overview
Presently the only method for integrating the use of Finance with Aurora involves redirecting the customer away to the Finance Provider's Website in order to complete the finance application.
To enable this on your checkout however, you need only add the code detailed in this guide to your Checkout template, and list the options available to the customer.
How to display finance options
Regardless of the finance provider, the following template can be used to display the finance option and all your available 'Finance Products' in the checkout.
checkout/index.tpl.html
{if $finance_options}
<p>
<label class="checkout_label_radio" for="finance">{site_text page="Checkout" part="Label: Finance" manageable=1}</label>
<input type="radio" class="radio" name="payment_type" id="payment_finance" value="finance" {$page.payment_finance} />
</p>
{/if}
...
<div class="checkout_finance_div" {if !$finance_options || !$page.payment_finance}style="display: none;"{/if}>
<fieldset>
{include file="_includes/finance_calculator.tpl.html"}
<input type="hidden" id="financeoptions" name="financeoptions" value="{$page.financeoptions}" />
<input type="hidden" id="finance_deposit" name="finance_deposit" value="" />
</fieldset>
</div>
Related Aurora Demo Example Files
example.com/_includes/finance_calculator.tpl.html
Updated over 2 years ago