A template in which the customers can provide a separate delivery address.
Kuvaus
This template is used for the stage 2b of the multi-page checkout.
The template must always contain a <form>
element sent via a POST
request to the /checkout/ address. The checkout form tags must be placed inside the form.
Basic customer information is collected during the previous checkout stage.
Sivupohjan ominaisuudet
- Sivupohjan sijainti
- themes/shop/THEME/checkout/shipping-information.html
- Sivupohjan URL
- /checkout/shipping-information/
- Asetettu näkyvyys
Toteutus oletusteemassa
{Helper(file:'checkout/header')}
{CheckoutNavigation}
<div id="MultiPageCheckout" class="clearfix">
<form action="/checkout/" method="post">
<div class="FormItem HeaderItem">
<h2>{%CheckoutShippingAddress}</h2>
<p>{%CheckoutShippingAddressIntro}</p>
</div>
{CheckoutShippingAddress(
mode: 'form',
before: '<fieldset>',
after: '</fieldset>'
)}
<div class="FormItem FormSubmit">
<button type="submit" class="SubmitButton">{%CheckoutContinue}</button>
</div>
</form>
</div>
{Helper(file:'checkout/footer')}