Section & Variations › Cart

Available Parameters
Parameter Type Description
variation Text
required
Default : cart-variation-1
Selected variations for Cart section.
List of available variations :
  • cart-variation-2
  • cart-variation-3
title Text Set title for Cart section.
items Array of Cart Item
required
Set list of Cart Item.
Example:
[
  {
    "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"
  }
]
summaryItems Array of Summary Item
required
Set list of Summary Item.
Example:
[
  {
    "label" : "Subtotal",
    "value" : "$29.00"
  }
]
btnCheckout Text HTML Display Text for Checkout Button.
checkoutMessage Text HTML Display message under Checkout Button.
Available Variations
Cart Variation 2 Starter Kit Codes
{# include sections/cart  #}
{% include "../resources/sections/cart.twig", with {
    	'variation'		: 'cart-variation-2',

	'title'			: 'Shopping Cart',

	'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'		: [
		{
			'label'	: 'Subtotal',
			'value'	: '$29.00'
		},
		{
			'label'	: 'Shipping (Shipping - Standard)',
			'value'	: '$0.00'
		},
		{
			'label'	: 'Order total',
			'value'	: '$29.00'
		}
	],
	
	'btnCheckout'		: 'PROCEED TO CHECKOUT',
	'checkoutMessage'	: 'Vendora always attaches importance to the security of your transactions. All transactions via Vendora.com are guaranteed to be 100% safe.'
  } %}
Cart Variation 3 Starter Kit Codes
{# include sections/cart  #}
{% include "../resources/sections/cart.twig", with {
    	'variation'		: 'cart-variation-3',

	'title'			: 'Shopping bag (2)',

	'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'		: [
		{
			'label'	: 'Subtotal',
			'value'	: '$50.00'
		},
		{
			'label'	: 'Shipping (Shipping - Standard)',
			'value'	: 'TBD'
		},
		{
			'label'	: 'Tax',
			'value'	: '$TBD'
		},
		{
			'class'	: 'strong',
			'label'	: 'Estimated Total',
			'value'	: '$50.00'
		}
	],

	'btnCheckout'		: ' PROCEED TO CHECKOUT',
	'checkoutMessage'	: 'Need help with your order? <a href="#">Chat Now</a>'
  } %}