Section & Variations › Payment Success

Available Parameters
Parameter Type Description
variation Text
required
Default : cart-variation-1
Selected variations for Payment Success section.
List of available variations :
  • cart-variation-1
  • cart-variation-2
  • cart-variation-3
icon Text
required
Set icon clases for Payment Success section.
title Text
required
Set title for Payment Success section.
orderId Text
required for cart-variation-2, cart-variation-3
Display Order ID for Payment Success section.
description Text
required
Set description for Payment Success section.
product Product Object
required for cart-variation-1
Set Product Details for Payment Success section.
Example:
{
    'image'           : 'travel-product-list-1.png',
    
    'title'           : 'Bamboo Villa in Eco Six Bali Resort',
    'location'        : 'Treehouse in Kecamatan Sidemen, Indonesia',
    'rating'          : {
        'score'          : 4.8,
        'description'    : '(890 reviews)',
    }
}
dates Text
required for cart-variation-1
Set Dates Details for Payment Success section.
guest Text
required for cart-variation-1
Set Guest Details for Payment Success section.
btnText Text HTML
required for cart-variation-2, cart-variation-3
Display Text for Back to Home Button.
Available Variations
Payment Success Variation 1 Starter Kit Codes
{# include sections/payment-success  #}
{% include "../resources/sections/payment-success.twig", with {
    	'variation'		: 'cart-variation-1',

	'icon'			: 'ic-suitcase-rolling primary',

	'title'			: 'Your Booking is Confirmed',
	'description'	: 'Congratulations! Your travel booking has been successfully confirmed. We're thrilled to be a part of your upcoming adventure.',

	'product'		: {
		'image'		: 'travel-product-list-1.png',
		
		'title'		: 'Bamboo Villa in Eco Six Bali Resort',
		'location'	: 'Treehouse in Kecamatan Sidemen, Indonesia',
		'rating'		: {
			'score'			: 4.8,
			'description'	: '(890 reviews)',
		},
	},

	'dates'	: 'Jan 14 - 17, 2024',
	'guest'	: '1 Room, 2 Adults'
  } %}
Payment Success Variation 2 Starter Kit Codes
{# include sections/payment-success  #}
{% include "../resources/sections/payment-success.twig", with {
    	'variation'		: 'cart-variation-2',

	'icon'			: 'ic-totebag primary',

	'title'			: 'Thanks for your order!',

	'orderId'		: 'Your order ID is: QW12ER34TY56',

	'description'	: 'Your order has been placed and will be processed as soon as possible. Make sure you make note of your order number. You will be receiving an email shortly with confirmation of your order.',

	'btnText'		: 'BACK TO HOME'
  } %}
Payment Success Variation 3 Starter Kit Codes
{# include sections/payment-success  #}
{% include "../resources/sections/payment-success.twig", with {
    	'variation'		: 'cart-variation-3',

	'icon'			: 'ic-totebag primary',

	'title'			: 'Thanks for your order!',

	'orderId'		: 'Your order ID is: QW12ER34TY56',

	'description'	: 'Your order has been placed and will be processed as soon as possible. Make sure you make note of your order number. You will be receiving an email shortly with confirmation of your order.',

	'btnText'		: 'Continue Shopping'
  } %}