Section & Variations › Checkout
Available Parameters
| Parameter | Type | Description |
|---|---|---|
variation
|
Text
required Default : cart-variation-2
|
Selected variations for Checkout section. List of available variations :
|
title
|
Text | Set title for Cart section. |
items
|
Array of Cart Item
required |
Set list of Cart Item. Example: [
|
summaryItems
|
Array of Summary Item
required |
Set list of Summary Item. Example: [
|
Available Variations
Starter Kit Codes
{# include sections/checkout #}
{% include "../resources/sections/checkout.twig", with {
'variation' : 'cart-variation-2',
'title' : 'Checkout',
'items' : [
{
'title' : 'Slim Fit Waffled polo shirt',
'price' : 29.0,
'priceDisplay' : '$29.00',
'qty' : 2,
'variables' : [
{
'label' : 'Color: ',
'value' : 'Pale Taupe',
},
{
'label' : 'Size: ',
'value' : 'XL',
}
],
'image' : 'fashion-product-list-5.png',
},
{
'title' : 'Man in Green Zip Up Jacket',
'price' : 29.0,
'priceDisplay' : '$29.00',
'qty' : 1,
'variables' : [
{
'label' : 'Color: ',
'value' : 'Olive Green',
},
{
'label' : 'Size: ',
'value' : 'XL',
}
],
'image' : 'fashion-product-list-snippet-4.png',
}
],
'summaryItems' : [
{
'class' : 'strong',
'label' : 'Total',
'value' : '$500.00'
}
]
} %}
Starter Kit Codes
{# include sections/checkout #}
{% include "../resources/sections/checkout.twig", with {
'variation' : 'cart-variation-3',
'title' : 'Shipping',
'items' : [
{
'title' : 'Virena Smoothing Starter Set',
'category' : 'Skincare',
'price' : 320.0,
'priceDisplay' : '$320.00',
'qty' : 1,
'image' : 'cosmetics-product-details-2.png',
},
{
'title' : 'Advanced Super Revitalizing Cream',
'category' : 'Skincare',
'price' : 18.0,
'priceDisplay' : '$18.00',
'qty' : 1,
'image' : 'cosmetics-product-list-9.png',
}
],
'summaryItems' : [
{
'class' : 'strong',
'label' : 'Total',
'value' : '$500.00'
}
]
} %}