A template in which the customers can provide a separate delivery address.

Description

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.

Template properties

Template location
themes/shop/THEME/checkout/shipping-information.html
Template URL
/checkout/shipping-information/
Scope

Default theme implementation

{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')}