File: /home4/cca63905/public_html/nueva/themes/probusiness/templates/checkout/order-confirmation.tpl
{*
* 2007-2022 ETS-Soft
*
* NOTICE OF LICENSE
*
* This file is not open source! Each license that you purchased is only available for 1 wesite only.
* If you want to use this file on more websites (or projects), you need to purchase additional licenses.
* You are not allowed to redistribute, resell, lease, license, sub-license or offer our resources to any third party.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
* versions in the future. If you wish to customize PrestaShop for your
* needs, please contact us for extra customization service at an affordable price
*
* @author ETS-Soft <etssoft.jsc@gmail.com>
* @copyright 2007-2022 ETS-Soft
* @license Valid for 1 website (or project) for each purchase of license
* International Registered Trademark & Property of ETS-Soft
*}
{extends file='page.tpl'}
{block name='page_content_container' prepend}
<section id="content-hook_order_confirmation" class="card">
<div class="card-block">
<div class="row">
<div class="col-md-12">
{block name='order_confirmation_header'}
<h3 class="h1 card-title">
<i class="material-icons done"></i>{l s='Your order is confirmed' d='Shop.Theme.Checkout'}
</h3>
{/block}
<p>
{l s='An email has been sent to your mail address %email%.' d='Shop.Theme.Checkout' sprintf=['%email%' => $customer.email]}
{if $order.details.invoice_url}
{* [1][/1] is for a HTML tag. *}
{l
s='You can also [1]download your invoice[/1]'
d='Shop.Theme.Checkout'
sprintf=[
'[1]' => "<a href='{$order.details.invoice_url|escape:'html':'UTF-8'}'>",
'[/1]' => "</a>"
]
}
{/if}
</p>
{block name='hook_order_confirmation'}
{$HOOK_ORDER_CONFIRMATION nofilter}
{/block}
</div>
</div>
</div>
</section>
{/block}
{block name='page_content_container'}
<section id="content" class="page-content page-order-confirmation card">
<div class="card-block">
<div class="row">
{block name='order_confirmation_table'}
{include
file='checkout/_partials/order-confirmation-table.tpl'
products=$order.products
subtotals=$order.subtotals
totals=$order.totals
labels=$order.labels
add_product_link=false
}
{/block}
{block name='order_details'}
<div id="order-details" class="col-md-4">
<div class="order-details-content">
<h3 class="h3 card-title">{l s='Order details' d='Shop.Theme.Checkout'}:</h3>
<ul>
<li>{l s='Order reference: %reference%' d='Shop.Theme.Checkout' sprintf=['%reference%' => $order.details.reference]}</li>
<li>{l s='Payment method: %method%' d='Shop.Theme.Checkout' sprintf=['%method%' => $order.details.payment]}</li>
{if !$order.details.is_virtual}
<li>
{l s='Shipping method: %method%' d='Shop.Theme.Checkout' sprintf=['%method%' => $order.carrier.name]}<br>
<em>{$order.carrier.delay|escape:'html':'UTF-8'}</em>
</li>
{/if}
</ul>
</div>
</div>
{/block}
</div>
</div>
</section>
{block name='hook_payment_return'}
{if ! empty($HOOK_PAYMENT_RETURN)}
<section id="content-hook_payment_return" class="card definition-list">
<div class="card-block">
<div class="row">
<div class="col-md-12">
{$HOOK_PAYMENT_RETURN nofilter}
</div>
</div>
</div>
</section>
{/if}
{/block}
{block name='customer_registration_form'}
{if $customer.is_guest}
<div id="registration-form" class="card">
<div class="card-block">
<h4 class="h4">{l s='Save time on your next order, sign up now' d='Shop.Theme.Checkout'}</h4>
{render file='customer/_partials/customer-form.tpl' ui=$register_form}
</div>
</div>
{/if}
{/block}
{block name='hook_order_confirmation_1'}
{hook h='displayOrderConfirmation1'}
{/block}
{block name='hook_order_confirmation_2'}
<section id="content-hook-order-confirmation-footer">
{hook h='displayOrderConfirmation2'}
</section>
{/block}
{/block}