cart.orderOnly

Available Since: V1.0.0

Formats the order display when displaying only the order information.

fusionCSS 2

<div id="cartAddresses" class="row">
	<div id="cartInvoiceAddr" class="span6 span-s6">
		<h3>[[+cart.invoiceTo]]</h3>[[+cart.billingAddress]]</div>
	<div id="cartDeliveryAddr" class="span6 span-s6">
		<h3>[[+cart.deliverTo]]</h3>[[+cart.shippingAddress]]</div>
</div>
[[+cart.orderInfo]]
[[+cart.currencyMsg]]
[[if &subject=`[[+cart.giftMessage]]` &operator=`!empty` &then=`<h3>[[+cart.giftMessageLabel]]</h3> <p>[[+cart.giftMessage]]</p>`]]
[[if &subject=`[[+cart.customerNotes]]` &operator=`!empty` &then=`<h3>[[+cart.noteLabel]]</h3> <p>[[+cart.customerNotes]]</p>`]]
[[if &subject=`[[+cart.foundVia]]` &operator=`!empty` &then=`<h3>[[+cart.foundLabel]]</h3> <p>[[+cart.foundVia]]</p>`]]
[[if &subject=`[[+cart.orderState]]` &operator=`!empty` &then=`<div id="cartOrderStatus"><h3>[[+cart.statusLabel]]</h3> [[+cart.orderState]]</div>`]]
[[if &subject=`[[+cart.orderIP]]` &operator=`!empty` &then=`<div id="cartOrderIP"><strong>IP:</strong> [[+cart.orderIP]]</div>`]]
[[if &subject=`[[+cart.transactionInfo]]` &operator=`!empty` &then=`<div id="cartTransactions"><h3>[[+cart.transactionLabel]]</h3> <p>[[+cart.transactionInfo]]</p></div>`]]

Bootstrap 3

<div id="cartAddresses" class="row">
	<div id="cartInvoiceAddr" class="col-sm-6">
		<h3>[[+cart.invoiceTo]]</h3>[[+cart.billingAddress]]</div>
	<div id="cartDeliveryAddr" class="col-sm-6">
		<h3>[[+cart.deliverTo]]</h3>[[+cart.shippingAddress]]</div>
</div>
[[+cart.orderInfo]]
[[+cart.currencyMsg]]
[[if &subject=`[[+cart.giftMessage]]` &operator=`!empty` &then=`<h3>[[+cart.giftMessageLabel]]</h3> <p>[[+cart.giftMessage]]</p>`]]
[[if &subject=`[[+cart.customerNotes]]` &operator=`!empty` &then=`<h3>[[+cart.noteLabel]]</h3> <p>[[+cart.customerNotes]]</p>`]]
[[if &subject=`[[+cart.foundVia]]` &operator=`!empty` &then=`<h3>[[+cart.foundLabel]]</h3> <p>[[+cart.foundVia]]</p>`]]
[[if &subject=`[[+cart.orderState]]` &operator=`!empty` &then=`<div id="cartOrderStatus"><h3>[[+cart.statusLabel]]</h3> [[+cart.orderState]]</div>`]]
[[if &subject=`[[+cart.orderIP]]` &operator=`!empty` &then=`<div id="cartOrderIP"><strong>IP:</strong> [[+cart.orderIP]]</div>`]]
[[if &subject=`[[+cart.transactionInfo]]` &operator=`!empty` &then=`<div id="cartTransactions"><h3>[[+cart.transactionLabel]]</h3> <p>[[+cart.transactionInfo]]</p></div>`]]

Foundation 5

<div id="cartAddresses" class="row">
	<div id="cartInvoiceAddr" class="medium-6 columns">
		<h3>[[+cart.invoiceTo]]</h3>[[+cart.billingAddress]]</div>
	<div id="cartDeliveryAddr" class="medium-6 columns">
		<h3>[[+cart.deliverTo]]</h3>[[+cart.shippingAddress]]</div>
</div>
[[+cart.orderInfo]]
[[+cart.currencyMsg]]
[[if &subject=`[[+cart.giftMessage]]` &operator=`!empty` &then=`<h3>[[+cart.giftMessageLabel]]</h3> <p>[[+cart.giftMessage]]</p>`]]
[[if &subject=`[[+cart.customerNotes]]` &operator=`!empty` &then=`<h3>[[+cart.noteLabel]]</h3> <p>[[+cart.customerNotes]]</p>`]]
[[if &subject=`[[+cart.foundVia]]` &operator=`!empty` &then=`<h3>[[+cart.foundLabel]]</h3> <p>[[+cart.foundVia]]</p>`]]
[[if &subject=`[[+cart.orderState]]` &operator=`!empty` &then=`<div id="cartOrderStatus"><h3>[[+cart.statusLabel]]</h3> [[+cart.orderState]]</div>`]]
[[if &subject=`[[+cart.orderIP]]` &operator=`!empty` &then=`<div id="cartOrderIP"><strong>IP:</strong> [[+cart.orderIP]]</div>`]]
[[if &subject=`[[+cart.transactionInfo]]` &operator=`!empty` &then=`<div id="cartTransactions"><h3>[[+cart.transactionLabel]]</h3> <p>[[+cart.transactionInfo]]</p></div>`]]
Placeholder Description
cart.shopAddress The address of the store selling the items.
cart.orderNumLabel Label for the order number.
cart.orderDateLabel Label for the order date.
cart.orderID The order number.
cart.orderDate The date of the order.
cart.invoiceTo Label for the invoice to address.
cart.billingAddress The billing address for the order.
cart.deliverTo Label for the deliver to address.
cart.shippingAddress The shipping address for the order.
cart.orderInfo The order information.
cart.customerNotes The customer notes.
cart.noteLabel The label for customer notes.
cart.foundVia How the customer found the store.
cart.foundLabel Label for how the customer found the store.
cart.orderState The status information for the order.
cart.statusLabel Label for the order status information.
cart.transactionInfo Transaction information for the order.
cart.transactionLabel The label for transactions.
cart.orderIP The IP address that the order was placed from.
cart.currencyMsg The currency information for the order.




TOP