Jump to content

Edit History

vxmretail

vxmretail


extra info

 

Hi,

I see a problem in my error log:

[28-Feb-2021 17:56:34 Europe/Amsterdam] PHP Warning:  htmlspecialchars() expects parameter 1 to be string, array given in /home/XXX/public_html/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/a4/5e/c8/a45ec8b6e41f76c7af2e5ff1fb03cffacfb2ee57_2.file.product-prices.tpl.php on line 226
 

Line 226:

<span class="current-price"><span itemprop="price" class="product-price" content="<?php echo htmlspecialchars($_smarty_tpl->tpl_vars['product']->value['rounded_display_price'], ENT_QUOTES, 'UTF-8');?>
"><?php echo htmlspecialchars($_smarty_tpl->tpl_vars['product']->value['price'], ENT_QUOTES, 'UTF-8');?>

This is my product-prices.tpl file

{**
 * 2007-2017 PrestaShop
 *
 * NOTICE OF LICENSE
 *
 * This source file is subject to the Open Software License (OSL 3.0)
 * that is bundled with this package in the file LICENSE.txt.
 * It is also available through the world-wide-web at this URL:
 * http://opensource.org/licenses/osl-3.0.php
 * If you did not receive a copy of the license and are unable to
 * obtain it through the world-wide-web, please send an email
 * to [email protected] so we can send you a copy immediately.
 *
 * 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 refer to http://www.prestashop.com for more information.
 *
 * @author    PrestaShop SA <contact@prestashop.com>
 * @copyright 2007-2017 PrestaShop SA
 * @license   http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
 * International Registered Trademark & Property of PrestaShop SA
 *}



    <div class="product-prices">
        {block name='product_reference'}
            {if $iqitTheme.pp_reference == 'title'}
            {if isset($product.reference_to_display) && $product.reference_to_display neq ''}
                <div class="product-reference">
                    <label class="label">{l s='Reference' d='Shop.Theme.Catalog'} </label>                    <span itemprop="sku">{$product.reference_to_display}</span>					<br />					<label class="label">{l s='Ean13' d='Shop.Theme.Catalog'}:</label>					<span itemprop="gtin13" content="{$product.ean13}">{$product.ean13}</span>
                </div>
            {/if}
            {/if}
        {/block}



        {if $product.show_price}
        {if !$configuration.is_catalog}
            {block name='product_availability'}
                {if $product.show_availability && $product.availability_message}
                    <span id="product-availability"
                          class="badge {if $product.availability == 'available'} {if $product.quantity <= 0  && !$product.allow_oosp} badge-danger product-unavailable  {elseif $product.quantity <= 0  && $product.allow_oosp}badge-warning product-unavailable-allow-oosp {else}badge-success product-available{/if}{elseif $product.availability == 'last_remaining_items'}badge-warning product-last-items{else}badge-danger product-unavailable{/if}">
                  {if $product.availability == 'available'}
                      <i class="fa fa-check rtl-no-flip" aria-hidden="true"></i>
                                                     {$product.availability_message}
                  {elseif $product.availability == 'last_remaining_items'}
                      <i class="fa fa-exclamation" aria-hidden="true"></i>
                                                     {$product.availability_message}
                  {else}
                      <i class="fa fa-ban" aria-hidden="true"></i>
                              {$product.availability_message}
                      {if isset($product.available_date) && $product.available_date != '0000-00-00'}
                      {if $product.available_date|strtotime > $smarty.now}<span
                              class="available-date">{l s='until' d='Shop.Theme.Catalog'} {$product.available_date}</span>{/if}
                  {/if}
                  {/if}
                </span>
                {/if}
            {/block}
        {/if}


        {block name='product_price'}
            <div class="{if $product.has_discount}has-discount{/if}"
                 itemprop="offers"
                 itemscope
                 itemtype="https://schema.org/Offer"
            >

                {if isset($product.seo_availability)}
                    <link itemprop="availability" href="{$product.seo_availability}"/>
                {else}
                    <link itemprop="availability" href="https://schema.org/InStock"/>
                {/if}
                <meta itemprop="priceCurrency" content="{$currency.iso_code}">
                <meta itemprop="url" content="{$product.url}">


                <div>
                    <span itemprop="price" class="product-price" content="{$product.rounded_display_price}">{$product.price}</span>
                    {if $product.has_discount}
                        <span class="product-discount">
                            {hook h='displayProductPriceBlock' product=$product type="old_price"}
                            <span class="regular-price">{$product.regular_price}</span>
                         </span>

                        {if $product.discount_type === 'percentage'}
                            <span class="badge badge-discount discount discount-percentage">-{$product.discount_percentage_absolute}</span>
                        {else}
                            <span class="badge badge-discount discount discount-amount">-{$product.discount_to_display}</span>
                        {/if}

                        {if isset($product.specific_prices.to) && $product.specific_prices.to != '0000-00-00 00:00:00'}<meta itemprop="priceValidUntil" content="{$product.specific_prices.to}"/>{/if}

                    {/if}
                </div>
				                {block name='product_unit_price'}
                    {if $displayUnitPrice}
                        <p class="product-unit-price text-muted">{l s='(%unit_price%)' d='Shop.Theme.Catalog' sprintf=['%unit_price%' => $product.unit_price_full]}</p>
                    {/if}
                {/block}
            </div>
        {/block}

        {block name='product_without_taxes'}
            {if $priceDisplay == 2}
                <p class="product-without-taxes text-muted">{l s='%price% tax excl.' d='Shop.Theme.Catalog' sprintf=['%price%' => $product.price_tax_exc]}</p>
            {/if}
        {/block}

        {block name='product_pack_price'}
            {if $displayPackPrice}
                <p class="product-pack-price">
                    <span>{l s='Instead of %price%' d='Shop.Theme.Catalog' sprintf=['%price%' => $noPackPrice]}</span>
                </p>
            {/if}
        {/block}

        {block name='product_ecotax'}
            {if $product.ecotax.amount > 0}
                <p class="price-ecotax text-muted">{l s='Including %amount% for ecotax' d='Shop.Theme.Catalog' sprintf=['%amount%' => $product.ecotax.value]}
                    {if $product.has_discount}
                        {l s='(not impacted by the discount)' d='Shop.Theme.Catalog'}
                    {/if}
                </p>
            {/if}
        {/block}

        {hook h='displayProductPriceBlock' product=$product type="weight" hook_origin='product_sheet'}

        <div class="tax-shipping-delivery-label text-muted">
            {if isset($configuration.taxes_enabled) && !$configuration.taxes_enabled}
                {l s='No tax' d='Shop.Theme.Catalog'}
            {elseif $configuration.display_taxes_label}
                {$product.labels.tax_long}
            {/if}
            {hook h='displayProductPriceBlock' product=$product type="price"}
            {hook h='displayProductPriceBlock' product=$product type="after_price"}
            {if $product.additional_delivery_times == 1}
                {if $product.delivery_information}
                    <span class="delivery-information">{$product.delivery_information}</span>
                {/if}
            {elseif $product.additional_delivery_times == 2}
                {if $product.quantity > 0}
                    <span class="delivery-information">{$product.delivery_in_stock}</span>
                    {* Out of stock message should not be displayed if customer can't order the product. *}
                    {elseif $product.quantity <= 0 && $product.add_to_cart_url}
                    <span class="delivery-information">{$product.delivery_out_stock}</span>
                {/if}
            {/if}
        </div>
        {hook h='displayCountDown'}
        {/if}		
    </div>

Does anyone know a solution?
Thanks!

 

Best Regards,

Jelte

satisfyer-wand-er-woman-white.html

vxmretail

vxmretail


extra info

 

Hi,

I see a problem in my error log:

[28-Feb-2021 17:56:34 Europe/Amsterdam] PHP Warning:  htmlspecialchars() expects parameter 1 to be string, array given in /home/XXX/public_html/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/a4/5e/c8/a45ec8b6e41f76c7af2e5ff1fb03cffacfb2ee57_2.file.product-prices.tpl.php on line 226
 

Line 226:

<span class="current-price"><span itemprop="price" class="product-price" content="<?php echo htmlspecialchars($_smarty_tpl->tpl_vars['product']->value['rounded_display_price'], ENT_QUOTES, 'UTF-8');?>
"><?php echo htmlspecialchars($_smarty_tpl->tpl_vars['product']->value['price'], ENT_QUOTES, 'UTF-8');?>

This is my product-prices.tpl file

{**
 * 2007-2017 PrestaShop
 *
 * NOTICE OF LICENSE
 *
 * This source file is subject to the Open Software License (OSL 3.0)
 * that is bundled with this package in the file LICENSE.txt.
 * It is also available through the world-wide-web at this URL:
 * http://opensource.org/licenses/osl-3.0.php
 * If you did not receive a copy of the license and are unable to
 * obtain it through the world-wide-web, please send an email
 * to [email protected] so we can send you a copy immediately.
 *
 * 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 refer to http://www.prestashop.com for more information.
 *
 * @author    PrestaShop SA <contact@prestashop.com>
 * @copyright 2007-2017 PrestaShop SA
 * @license   http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
 * International Registered Trademark & Property of PrestaShop SA
 *}



    <div class="product-prices">
        {block name='product_reference'}
            {if $iqitTheme.pp_reference == 'title'}
            {if isset($product.reference_to_display) && $product.reference_to_display neq ''}
                <div class="product-reference">
                    <label class="label">{l s='Reference' d='Shop.Theme.Catalog'} </label>                    <span itemprop="sku">{$product.reference_to_display}</span>					<br />					<label class="label">{l s='Ean13' d='Shop.Theme.Catalog'}:</label>					<span itemprop="gtin13" content="{$product.ean13}">{$product.ean13}</span>
                </div>
            {/if}
            {/if}
        {/block}



        {if $product.show_price}
        {if !$configuration.is_catalog}
            {block name='product_availability'}
                {if $product.show_availability && $product.availability_message}
                    <span id="product-availability"
                          class="badge {if $product.availability == 'available'} {if $product.quantity <= 0  && !$product.allow_oosp} badge-danger product-unavailable  {elseif $product.quantity <= 0  && $product.allow_oosp}badge-warning product-unavailable-allow-oosp {else}badge-success product-available{/if}{elseif $product.availability == 'last_remaining_items'}badge-warning product-last-items{else}badge-danger product-unavailable{/if}">
                  {if $product.availability == 'available'}
                      <i class="fa fa-check rtl-no-flip" aria-hidden="true"></i>
                                                     {$product.availability_message}
                  {elseif $product.availability == 'last_remaining_items'}
                      <i class="fa fa-exclamation" aria-hidden="true"></i>
                                                     {$product.availability_message}
                  {else}
                      <i class="fa fa-ban" aria-hidden="true"></i>
                              {$product.availability_message}
                      {if isset($product.available_date) && $product.available_date != '0000-00-00'}
                      {if $product.available_date|strtotime > $smarty.now}<span
                              class="available-date">{l s='until' d='Shop.Theme.Catalog'} {$product.available_date}</span>{/if}
                  {/if}
                  {/if}
                </span>
                {/if}
            {/block}
        {/if}


        {block name='product_price'}
            <div class="{if $product.has_discount}has-discount{/if}"
                 itemprop="offers"
                 itemscope
                 itemtype="https://schema.org/Offer"
            >

                {if isset($product.seo_availability)}
                    <link itemprop="availability" href="{$product.seo_availability}"/>
                {else}
                    <link itemprop="availability" href="https://schema.org/InStock"/>
                {/if}
                <meta itemprop="priceCurrency" content="{$currency.iso_code}">
                <meta itemprop="url" content="{$product.url}">


                <div>
                    <span itemprop="price" class="product-price" content="{$product.rounded_display_price}">{$product.price}</span>
                    {if $product.has_discount}
                        <span class="product-discount">
                            {hook h='displayProductPriceBlock' product=$product type="old_price"}
                            <span class="regular-price">{$product.regular_price}</span>
                         </span>

                        {if $product.discount_type === 'percentage'}
                            <span class="badge badge-discount discount discount-percentage">-{$product.discount_percentage_absolute}</span>
                        {else}
                            <span class="badge badge-discount discount discount-amount">-{$product.discount_to_display}</span>
                        {/if}

                        {if isset($product.specific_prices.to) && $product.specific_prices.to != '0000-00-00 00:00:00'}<meta itemprop="priceValidUntil" content="{$product.specific_prices.to}"/>{/if}

                    {/if}
                </div>
				                {block name='product_unit_price'}
                    {if $displayUnitPrice}
                        <p class="product-unit-price text-muted">{l s='(%unit_price%)' d='Shop.Theme.Catalog' sprintf=['%unit_price%' => $product.unit_price_full]}</p>
                    {/if}
                {/block}
            </div>
        {/block}

        {block name='product_without_taxes'}
            {if $priceDisplay == 2}
                <p class="product-without-taxes text-muted">{l s='%price% tax excl.' d='Shop.Theme.Catalog' sprintf=['%price%' => $product.price_tax_exc]}</p>
            {/if}
        {/block}

        {block name='product_pack_price'}
            {if $displayPackPrice}
                <p class="product-pack-price">
                    <span>{l s='Instead of %price%' d='Shop.Theme.Catalog' sprintf=['%price%' => $noPackPrice]}</span>
                </p>
            {/if}
        {/block}

        {block name='product_ecotax'}
            {if $product.ecotax.amount > 0}
                <p class="price-ecotax text-muted">{l s='Including %amount% for ecotax' d='Shop.Theme.Catalog' sprintf=['%amount%' => $product.ecotax.value]}
                    {if $product.has_discount}
                        {l s='(not impacted by the discount)' d='Shop.Theme.Catalog'}
                    {/if}
                </p>
            {/if}
        {/block}

        {hook h='displayProductPriceBlock' product=$product type="weight" hook_origin='product_sheet'}

        <div class="tax-shipping-delivery-label text-muted">
            {if isset($configuration.taxes_enabled) && !$configuration.taxes_enabled}
                {l s='No tax' d='Shop.Theme.Catalog'}
            {elseif $configuration.display_taxes_label}
                {$product.labels.tax_long}
            {/if}
            {hook h='displayProductPriceBlock' product=$product type="price"}
            {hook h='displayProductPriceBlock' product=$product type="after_price"}
            {if $product.additional_delivery_times == 1}
                {if $product.delivery_information}
                    <span class="delivery-information">{$product.delivery_information}</span>
                {/if}
            {elseif $product.additional_delivery_times == 2}
                {if $product.quantity > 0}
                    <span class="delivery-information">{$product.delivery_in_stock}</span>
                    {* Out of stock message should not be displayed if customer can't order the product. *}
                    {elseif $product.quantity <= 0 && $product.add_to_cart_url}
                    <span class="delivery-information">{$product.delivery_out_stock}</span>
                {/if}
            {/if}
        </div>
        {hook h='displayCountDown'}
        {/if}		
    </div>

Does anyone know a solution?
Thanks!

<!DOCTYPE html>
<!-- saved from url=(0099)https://www.erotouch.eu/en/toys/toys-for-her/vibrators/wand-massagers/satisfyer-wand-er-woman-white -->
<html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
        
        <meta name="robots" content="noindex,nofollow">
        <style>            body { background-color: #F9F9F9; color: #222; font: 14px/1.4 Helvetica, Arial, sans-serif; margin: 0; padding-bottom: 45px; }

            a { cursor: pointer; text-decoration: none; }
            a:hover { text-decoration: underline; }
            abbr[title] { border-bottom: none; cursor: help; text-decoration: none; }

            code, pre { font: 13px/1.5 Consolas, Monaco, Menlo, "Ubuntu Mono", "Liberation Mono", monospace; }

            table, tr, th, td { background: #FFF; border-collapse: collapse; vertical-align: top; }
            table { background: #FFF; border: 1px solid #E0E0E0; box-shadow: 0px 0px 1px rgba(128, 128, 128, .2); margin: 1em 0; width: 100%; }
            table th, table td { border: solid #E0E0E0; border-width: 1px 0; padding: 8px 10px; }
            table th { background-color: #E0E0E0; font-weight: bold; text-align: left; }

            .hidden-xs-down { display: none; }
            .block { display: block; }
            .break-long-words { -ms-word-break: break-all; word-break: break-all; word-break: break-word; -webkit-hyphens: auto; -moz-hyphens: auto; hyphens: auto; }
            .text-muted { color: #999; }

            .container { max-width: 1024px; margin: 0 auto; padding: 0 15px; }
            .container::after { content: ""; display: table; clear: both; }

            .exception-summary { background: #B0413E; border-bottom: 2px solid rgba(0, 0, 0, 0.1); border-top: 1px solid rgba(0, 0, 0, .3); flex: 0 0 auto; margin-bottom: 30px; }

            .exception-message-wrapper { display: flex; align-items: center; min-height: 70px; }
            .exception-message { flex-grow: 1; padding: 30px 0; }
            .exception-message, .exception-message a { color: #FFF; font-size: 21px; font-weight: 400; margin: 0; }
            .exception-message.long { font-size: 18px; }
            .exception-message a { border-bottom: 1px solid rgba(255, 255, 255, 0.5); font-size: inherit; text-decoration: none; }
            .exception-message a:hover { border-bottom-color: #ffffff; }

            .exception-illustration { flex-basis: 111px; flex-shrink: 0; height: 66px; margin-left: 15px; opacity: .7; }

            .trace + .trace { margin-top: 30px; }
            .trace-head .trace-class { color: #222; font-size: 18px; font-weight: bold; line-height: 1.3; margin: 0; position: relative; }

            .trace-message { font-size: 14px; font-weight: normal; margin: .5em 0 0; }

            .trace-file-path, .trace-file-path a { color: #222; margin-top: 3px; font-size: 13px; }
            .trace-class { color: #B0413E; }
            .trace-type { padding: 0 2px; }
            .trace-method { color: #B0413E; font-weight: bold; }
            .trace-arguments { color: #777; font-weight: normal; padding-left: 2px; }

            @media (min-width: 575px) {
                .hidden-xs-down { display: initial; }
            }</style>
    </head>
    <body>
                    <div class="exception-summary">
                <div class="container">
                    <div class="exception-message-wrapper">
                        <h1 class="break-long-words exception-message">Whoops, looks like something went wrong.</h1>
                        <div class="exception-illustration hidden-xs-down"><svg viewBox="0 0 136 81" xmlns="http://www.w3.org/2000/svg" fill-rule="evenodd" clip-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.4"><path d="M92.4 20.4a23.2 23.2 0 0 1 9 1.9 23.7 23.7 0 0 1 5.2 3 24.3 24.3 0 0 1 3.4 3.4 24.8 24.8 0 0 1 5 9.4c.5 1.7.8 3.4 1 5.2v14.5h.4l.5.2a7.4 7.4 0 0 0 2.5.2l.2-.2.6-.8.8-1.3-.2-.1a5.5 5.5 0 0 1-.8-.3 5.6 5.6 0 0 1-2.3-1.8 5.7 5.7 0 0 1-.9-1.6 6.5 6.5 0 0 1-.2-2.8 7.3 7.3 0 0 1 .5-2l.3-.3.8-.9.3-.3c.2-.2.5-.3.8-.3H120.7c.2 0 .3-.1.4 0h.4l.2.1.3.2.2-.4.3-.4.1-.1 1.2-1 .3-.2.4-.1.4-.1h.3l1.5.1.4.1.8.5.1.2 1 1.1v.2H129.4l.4-.2 1.4-.5h1.1c.3 0 .7.2 1 .4.2 0 .3.2.5.3l.2.2.5.3.4.6.1.3.4 1.4.1.4v.6a7.8 7.8 0 0 1-.1.6 9.9 9.9 0 0 1-.8 2.4 7.8 7.8 0 0 1-3 3.3 6.4 6.4 0 0 1-1 .5 6.1 6.1 0 0 1-.6.2l-.7.1h-.1a23.4 23.4 0 0 1-.2 1.7 14.3 14.3 0 0 1-.6 2.1l-.8 2a9.2 9.2 0 0 1-.4.6l-.7 1a9.1 9.1 0 0 1-2.3 2.2c-.9.5-2 .6-3 .7l-1.4.1h-.5l-.4.1a15.8 15.8 0 0 1-2.8-.1v4.2a9.7 9.7 0 0 1-.7 3.5 9.6 9.6 0 0 1-1.7 2.8 9.3 9.3 0 0 1-3 2.3 9 9 0 0 1-5.4.7 9 9 0 0 1-3-1 9.4 9.4 0 0 1-2.7-2.5 10 10 0 0 1-1 1.2 9.3 9.3 0 0 1-2 1.3 9 9 0 0 1-2.4 1 9 9 0 0 1-6.5-1.1A9.4 9.4 0 0 1 85 77V77a10.9 10.9 0 0 1-.6.6 9.3 9.3 0 0 1-2.7 2 9 9 0 0 1-6 .8 9 9 0 0 1-2.4-1 9.3 9.3 0 0 1-2.3-1.7 9.6 9.6 0 0 1-1.8-2.8 9.7 9.7 0 0 1-.8-3.7v-4a18.5 18.5 0 0 1-2.9.2l-1.2-.1c-1.9-.3-3.7-1-5.1-2.1A8.2 8.2 0 0 1 58 64a10.2 10.2 0 0 1-.9-1.2 15.3 15.3 0 0 1-.7-1.3 20.8 20.8 0 0 1-1.9-6.2v-.2a6.5 6.5 0 0 1-1-.3 6.1 6.1 0 0 1-.6-.3 6.6 6.6 0 0 1-.9-.5 8.2 8.2 0 0 1-2.7-3.8 10 10 0 0 1-.3-1 10.3 10.3 0 0 1-.3-1.9V47v-.4l.1-.4.6-1.4.1-.2a2 2 0 0 1 .8-.8l.3-.2.3-.2a3.2 3.2 0 0 1 1.8-.5h.4l.3.2 1.4.6.2.2.4.3.3.4.7-.7.2-.2.4-.2.6-.2h2.1l.4.2.4.2.3.2.8 1 .2-.1h.1v-.1H63l1.1.1h.3l.8.5.3.4.7 1 .2.3.1.5a11 11 0 0 1 .2 1.5c0 .8 0 1.6-.3 2.3a6 6 0 0 1-.5 1.2 5.5 5.5 0 0 1-3.3 2.5 12.3 12.3 0 0 0 1.4 3h.1l.2.1 1 .2h1.5l.5-.2H67.8l.5-.2h.1V44v-.4a26.7 26.7 0 0 1 .3-2.3 24.7 24.7 0 0 1 5.7-12.5 24.2 24.2 0 0 1 3.5-3.3 23.7 23.7 0 0 1 4.9-3 23.2 23.2 0 0 1 5.6-1.7 23.7 23.7 0 0 1 4-.3zm-.3 2a21.2 21.2 0 0 0-8 1.7 21.6 21.6 0 0 0-4.8 2.7 22.2 22.2 0 0 0-3.2 3 22.7 22.7 0 0 0-5 9.2 23.4 23.4 0 0 0-.7 4.9v15.7l-.5.1a34.3 34.3 0 0 1-1.5.3h-.2l-.4.1h-.4l-.9.2a10 10 0 0 1-1.9 0c-.5 0-1-.2-1.5-.4a1.8 1.8 0 0 1-.3-.2 2 2 0 0 1-.3-.3 5.2 5.2 0 0 1-.1-.2 9 9 0 0 1-.6-.9 13.8 13.8 0 0 1-1-2 14.3 14.3 0 0 1-.6-2 14 14 0 0 1-.1-.8v-.2h.3a12.8 12.8 0 0 0 1.4-.2 4.4 4.4 0 0 0 .3 0 3.6 3.6 0 0 0 1.1-.7 3.4 3.4 0 0 0 1.2-1.7l.2-1.2a5.1 5.1 0 0 0 0-.8 7.2 7.2 0 0 0-.1-.8l-.7-1-1.2-.2-1 .7-.1 1.3a5 5 0 0 1 .1.4v.6a1 1 0 0 1 0 .3c-.1.3-.4.4-.7.5l-1.2.4v-.7A9.9 9.9 0 0 1 60 49l.3-.6v-.2l.1-.1v-1.6l-1-1.2h-1.5l-1 1.1v.4a5.3 5.3 0 0 0-.2.6 5.5 5.5 0 0 0 0 .5c0 .7 0 1.4.3 2 0 .4.2.8.4 1.2L57 51a9.5 9.5 0 0 1-1.1-.5h-.2a2 2 0 0 1-.4-.3c-.4-.4-.5-1-.6-1.6a5.6 5.6 0 0 1 0-.5v-.5-.5l-.6-1.5-1.4-.6-.9.3s-.2 0-.3.2a2 2 0 0 1-.1 0l-.6 1.4v.7a8.5 8.5 0 0 0 .5 2c.4 1.1 1 2.1 2 2.8a4.7 4.7 0 0 0 2.1.9h1a22.8 22.8 0 0 0 .1 1 18.1 18.1 0 0 0 .8 3.8 18.2 18.2 0 0 0 1.6 3.7l1 1.3c1 1 2.3 1.6 3.7 2a11.7 11.7 0 0 0 4.8 0h.4l.5-.2.5-.1.6-.2v6.6a8 8 0 0 0 .1 1.3 7.5 7.5 0 0 0 2.4 4.3 7.2 7.2 0 0 0 2.3 1.3 7 7 0 0 0 7-1.1 7.5 7.5 0 0 0 2-2.6A7.7 7.7 0 0 0 85 72V71a8.2 8.2 0 0 0 .2 1.3c0 .7.3 1.4.6 2a7.5 7.5 0 0 0 1.7 2.3 7.3 7.3 0 0 0 2.2 1.4 7.1 7.1 0 0 0 4.6.2 7.2 7.2 0 0 0 2.4-1.2 7.5 7.5 0 0 0 2.1-2.7 7.8 7.8 0 0 0 .7-2.4V71a9.3 9.3 0 0 0 .1.6 7.6 7.6 0 0 0 .6 2.5 7.5 7.5 0 0 0 2.4 3 7.1 7.1 0 0 0 7 .8 7.3 7.3 0 0 0 2.3-1.5 7.5 7.5 0 0 0 1.6-2.3 7.6 7.6 0 0 0 .5-2l.1-1.1v-6.7l.4.1a12.2 12.2 0 0 0 2 .5 11.1 11.1 0 0 0 2.5 0h.8l1.2-.1a9.5 9.5 0 0 0 1.4-.2l.9-.3a3.5 3.5 0 0 0 .6-.4l1.2-1.4a12.2 12.2 0 0 0 .8-1.2c0-.3.2-.5.3-.7a15.9 15.9 0 0 0 .7-2l.3-1.6v-1.3l.2-.9V54.6a15.5 15.5 0 0 0 1.8 0 4.5 4.5 0 0 0 1.4-.5 5.7 5.7 0 0 0 2.5-3.2 7.6 7.6 0 0 0 .4-1.5v-.3l-.4-1.4a5.2 5.2 0 0 1-.2-.1l-.4-.4a3.8 3.8 0 0 0-.2 0 1.4 1.4 0 0 0-.5-.2l-1.4.4-.7 1.3v.7a5.7 5.7 0 0 1-.1.8l-.7 1.4a1.9 1.9 0 0 1-.5.3h-.3a9.6 9.6 0 0 1-.8.3 8.8 8.8 0 0 1-.6 0l.2-.4.2-.5.2-.3v-.4l.1-.2V50l.1-1 .1-.6v-.6a4.8 4.8 0 0 0 0-.8v-.2l-1-1.1-1.5-.2-1.1 1-.2 1.4v.1l.2.4.2.3v.4l.1 1.1v.3l.1.5v.8a9.6 9.6 0 0 1-.8-.3l-.2-.1h-.3l-.8-.1h-.2a1.6 1.6 0 0 1-.2-.2.9.9 0 0 1-.2-.2 1 1 0 0 1-.1-.5l.2-.9v-1.2l-.9-.8h-1.2l-.8.9v.3a4.8 4.8 0 0 0-.3 2l.3.9a3.5 3.5 0 0 0 1.2 1.6l1 .5.8.2 1.4.1h.4l.2.1a12.1 12.1 0 0 1-1 2.6 13.2 13.2 0 0 1-.8 1.5 9.5 9.5 0 0 1-1 1.2l-.2.3a1.7 1.7 0 0 1-.4.3 2.4 2.4 0 0 1-.7.2h-2.5a7.8 7.8 0 0 1-.6-.2l-.7-.2h-.2a14.8 14.8 0 0 1-.6-.2 23.4 23.4 0 0 1-.4-.1l-.4-.1-.3-.1V43.9a34.6 34.6 0 0 0 0-.6 23.6 23.6 0 0 0-.4-3 22.7 22.7 0 0 0-1.5-4.7 22.6 22.6 0 0 0-4.6-6.7 21.9 21.9 0 0 0-6.9-4.7 21.2 21.2 0 0 0-8.1-1.8H92zm9.1 33.7l.3.1a1 1 0 0 1 .6.8v.4a8.4 8.4 0 0 1 0 .5 8.8 8.8 0 0 1-1.6 4.2l-1 1.3A10 10 0 0 1 95 66c-1.3.3-2.7.4-4 .3a10.4 10.4 0 0 1-2.7-.8 10 10 0 0 1-3.6-2.5 9.3 9.3 0 0 1-.8-1 9 9 0 0 1-.7-1.2 8.6 8.6 0 0 1-.8-3.4V57a1 1 0 0 1 .3-.6 1 1 0 0 1 1.3-.2 1 1 0 0 1 .4.8v.4a6.5 6.5 0 0 0 .5 2.2 7 7 0 0 0 2.1 2.8l1 .6c2.6 1.6 6 1.6 8.5 0a8 8 0 0 0 1.1-.6 7.6 7.6 0 0 0 1.2-1.2 7 7 0 0 0 1-1.7 6.5 6.5 0 0 0 .4-2.5 1 1 0 0 1 .7-1h.4zM30.7 43.7c-15.5 1-28.5-6-30.1-16.4C-1.2 15.7 11.6 4 29 1.3 46.6-1.7 62.3 5.5 64 17.1c1.6 10.4-8.7 21-23.7 25a31.2 31.2 0 0 0 0 .9v.3a19 19 0 0 0 .1 1l.1.4.1.9a4.7 4.7 0 0 0 .5 1l.7 1a9.2 9.2 0 0 0 1.2 1l1.5.8.6.8-.7.6-1.1.3a11.2 11.2 0 0 1-2.6.4 8.6 8.6 0 0 1-3-.5 8.5 8.5 0 0 1-1-.4 11.2 11.2 0 0 1-1.8-1.2 13.3 13.3 0 0 1-1-1 18 18 0 0 1-.7-.6l-.4-.4a23.4 23.4 0 0 1-1.3-1.8l-.1-.1-.3-.5V45l-.3-.6v-.7zM83.1 36c3.6 0 6.5 3.2 6.5 7.1 0 4-3 7.2-6.5 7.2S76.7 47 76.7 43 79.6 36 83 36zm18 0c3.6 0 6.5 3.2 6.5 7.1 0 4-2.9 7.2-6.4 7.2S94.7 47 94.7 43s3-7.1 6.5-7.1zm-18 6.1c2 0 3.5 1.6 3.5 3.6S85 49.2 83 49.2s-3.4-1.6-3.4-3.6S81.2 42 83 42zm17.9 0c1.9 0 3.4 1.6 3.4 3.6s-1.5 3.6-3.4 3.6c-2 0-3.5-1.6-3.5-3.6S99.1 42 101 42zM17 28c-.3 1.6-1.8 5-5.2 5.8-2.5.6-4.1-.8-4.5-2.6-.4-1.9.7-3.5 2.1-4.5A3.5 3.5 0 0 1 8 24.6c-.4-2 .8-3.7 3.2-4.2 1.9-.5 3.1.2 3.4 1.5.3 1.1-.5 2.2-1.8 2.5-.9.3-1.6 0-1.7-.6a1.4 1.4 0 0 1 0-.7s.3.2 1 0c.7-.1 1-.7.9-1.2-.2-.6-1-.8-1.8-.6-1 .2-2 1-1.7 2.6.3 1 .9 1.6 1.5 1.8l.7-.2c1-.2 1.5 0 1.6.5 0 .4-.2 1-1.2 1.2a3.3 3.3 0 0 1-1.5 0c-.9.7-1.6 1.9-1.3 3.2.3 1.3 1.3 2.2 3 1.8 2.5-.7 3.8-3.7 4.2-5-.3-.5-.6-1-.7-1.6-.1-.5.1-1 .9-1.2.4 0 .7.2.8.8a2.8 2.8 0 0 1 0 1l.7 1c.6-2 1.4-4 1.7-4 .6-.2 1.5.6 1.5.6-.8.7-1.7 2.4-2.3 4.2.8.6 1.6 1 2.1 1 .5-.1.8-.6 1-1.2-.3-2.2 1-4.3 2.3-4.6.7-.2 1.3.2 1.4.8.1.5 0 1.3-.9 1.7-.2-1-.6-1.3-1-1.3-.4.1-.7 1.4-.4 2.8.2 1 .7 1.5 1.3 1.4.8-.2 1.3-1.2 1.7-2.1-.3-2.1.9-4.2 2.2-4.5.7-.2 1.2.1 1.4 1 .4 1.4-1 2.8-2.2 3.4.3.7.7 1 1.3.9 1-.3 1.6-1.5 2-2.5l-.5-3v-.3s1.6-.3 1.8.6v.1c.2-.6.7-1.2 1.3-1.4.8-.1 1.5.6 1.7 1.6.5 2.2-.5 4.4-1.8 4.7H33a31.9 31.9 0 0 0 1 5.2c-.4.1-1.8.4-2-.4l-.5-5.6c-.5 1-1.3 2.2-2.5 2.4-1 .3-1.6-.3-2-1.1-.5 1-1.3 2.1-2.4 2.4-.8.2-1.5-.1-2-1-.3.8-.9 1.5-1.5 1.7-.7.1-1.5-.3-2.4-1-.3.8-.4 1.6-.4 2.2 0 0-.7 0-.8-.4-.1-.5 0-1.5.3-2.7a10.3 10.3 0 0 1-.7-.8zm38.2-17.8l.2.9c.5 1.9.4 4.4.8 6.4 0 .6-.4 3-1.4 3.3-.2 0-.3 0-.4-.4-.1-.7 0-1.6-.3-2.6-.2-1.1-.8-1.6-1.5-1.5-.8.2-1.3 1-1.6 2l-.1-.5c-.2-1-1.8-.6-1.8-.6a6.2 6.2 0 0 1 .4 1.3l.2 1c-.2.5-.6 1-1.2 1l-.2.1a7 7 0 0 0-.1-.8c-.3-1.1-1-2-1.6-1.8a.7.7 0 0 0-.4.3c-1.3.3-2.4 2-2.1 3.9-.2.9-.6 1.7-1 1.9-.5 0-.8-.5-1.1-1.8l-.1-1.2a4 4 0 0 0 0-1.7c0-.4-.4-.7-.8-.6-.7.2-.9 1.7-.5 3.8-.2 1-.6 2-1.3 2-.4.2-.8-.2-1-1l-.2-3c1.2-.5 2-1 1.8-1.7-.1-.5-.8-.7-.8-.7s0 .7-1 1.2l-.2-1.4c-.1-.6-.4-1-1.7-.6l.4 1 .2 1.5h-1v.8c0 .3.4.3 1 .2 0 1.3 0 2.7.2 3.6.3 1.4 1.2 2 2 1.7 1-.2 1.6-1.3 2-2.3.3 1.2 1 2 1.9 1.7.7-.2 1.2-1.1 1.6-2.2.4.8 1.1 1.1 2 1 1.2-.4 1.7-1.6 1.8-2.8h.2c.6-.2 1-.6 1.3-1 0 .8 0 1.5.2 2.1.1.5.3.7.6.6.5-.1 1-.9 1-.9a4 4 0 0 1-.3-1c-.3-1.3.3-3.6 1-3.7.2 0 .3.2.5.7v.8l.2 1.5v.7c.2.7.7 1.3 1.5 1 1.3-.2 2-2.6 2.1-3.9.3.2.6.2 1 .1-.6-2.2 0-6.1-.3-7.9-.1-.4-1-.5-1.7-.5h-.4zm-21.5 12c.4 0 .7.3 1 1.1.2 1.3-.3 2.6-.9 2.8-.2 0-.7 0-1-1.2v-.4c0-1.3.4-2 1-2.2zm-5.2 1c.3 0 .6.2.6.5.2.6-.3 1.3-1.2 2-.3-1.4.1-2.3.6-2.5zm18-.4c-.5.2-1-.4-1.2-1.2-.2-1 0-2.1.7-2.5v.5c.2.7.6 1.5 1.3 1.9 0 .7-.2 1.2-.7 1.3zm10-1.6c0 .5.4.7 1 .6.8-.2 1-1 .8-1.6 0-.5-.4-1-1-.8-.5.1-1 .9-.8 1.8zm-14.3-5.5c0-.4-.5-.7-1-.5-.8.2-1 1-.9 1.5.2.6.5 1 1 .8.5 0 1.1-1 1-1.8z" fill="#fff" fill-opacity=".6"></path></svg></div>
                    </div>
                </div>
            </div>

            <div class="container">
                                    <div class="trace trace-as-html">
                        <table class="trace-details">
                            <thead class="trace-head"><tr><th>
                                <h3 class="trace-class">
                                    <span class="text-muted">(1/1)</span>
                                    <span class="exception_title"><abbr title="Symfony\Component\Debug\Exception\ContextErrorException">ContextErrorException</abbr></span>
                                </h3>
                                <p class="break-long-words trace-message">Warning: htmlspecialchars() expects parameter 1 to be string, array given</p>
                            </th></tr></thead>
                            <tbody><tr><td><span class="block trace-file-path">in <span title="/home/erotouch187649/public_html/var/cache/dev/smarty/compile/warehouselayouts_layout_full_width_tpl/a4/5e/c8/a45ec8b6e41f76c7af2e5ff1fb03cffacfb2ee57_2.file.product-prices.tpl.php line 226"><strong>a45ec8b6e41f76c7af2e5ff1fb03cffacfb2ee57_2.file.product-prices.tpl.php</strong> line 226</span></span></td></tr>
<tr><td>at <span class="trace-class"><abbr title="Block_1950195699603bcecdcc69e7_12115817">Block_1950195699603bcecdcc69e7_12115817</abbr></span><span class="trace-type">-&gt;</span><span class="trace-method">callBlock</span>(<span class="trace-arguments"><em>object</em>(<abbr title="SmartyCustomTemplate">SmartyCustomTemplate</abbr>)</span>)<span class="block trace-file-path">in <span title="/home/erotouch187649/public_html/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php line 248"><strong>smarty_internal_runtime_inheritance.php</strong> line 248</span></span></td></tr>
<tr><td>at <span class="trace-class"><abbr title="Smarty_Internal_Runtime_Inheritance">Smarty_Internal_Runtime_Inheritance</abbr></span><span class="trace-type">-&gt;</span><span class="trace-method">callBlock</span>(<span class="trace-arguments"><em>object</em>(<abbr title="Block_1950195699603bcecdcc69e7_12115817">Block_1950195699603bcecdcc69e7_12115817</abbr>), <em>object</em>(<abbr title="SmartyCustomTemplate">SmartyCustomTemplate</abbr>)</span>)<span class="block trace-file-path">in <span title="/home/erotouch187649/public_html/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php line 184"><strong>smarty_internal_runtime_inheritance.php</strong> line 184</span></span></td></tr>
<tr><td>at <span class="trace-class"><abbr title="Smarty_Internal_Runtime_Inheritance">Smarty_Internal_Runtime_Inheritance</abbr></span><span class="trace-type">-&gt;</span><span class="trace-method">process</span>(<span class="trace-arguments"><em>object</em>(<abbr title="SmartyCustomTemplate">SmartyCustomTemplate</abbr>), <em>object</em>(<abbr title="Block_1950195699603bcecdcc69e7_12115817">Block_1950195699603bcecdcc69e7_12115817</abbr>)</span>)<span class="block trace-file-path">in <span title="/home/erotouch187649/public_html/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php line 156"><strong>smarty_internal_runtime_inheritance.php</strong> line 156</span></span></td></tr>
<tr><td>at <span class="trace-class"><abbr title="Smarty_Internal_Runtime_Inheritance">Smarty_Internal_Runtime_Inheritance</abbr></span><span class="trace-type">-&gt;</span><span class="trace-method">instanceBlock</span>(<span class="trace-arguments"><em>object</em>(<abbr title="SmartyCustomTemplate">SmartyCustomTemplate</abbr>), 'Block_1950195699603bcecdcc69e7_12115817', 'product_price'</span>)<span class="block trace-file-path">in <span title="/home/erotouch187649/public_html/var/cache/dev/smarty/compile/warehouselayouts_layout_full_width_tpl/a4/5e/c8/a45ec8b6e41f76c7af2e5ff1fb03cffacfb2ee57_2.file.product-prices.tpl.php line 48"><strong>a45ec8b6e41f76c7af2e5ff1fb03cffacfb2ee57_2.file.product-prices.tpl.php</strong> line 48</span></span></td></tr>
<tr><td>at <span class="trace-class"><abbr title=""></abbr></span><span class="trace-type"></span><span class="trace-method">content_603bcecdcf3211_35790866</span>(<span class="trace-arguments"><em>object</em>(<abbr title="SmartyCustomTemplate">SmartyCustomTemplate</abbr>)</span>)<span class="block trace-file-path">in <span title="/home/erotouch187649/public_html/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php line 123"><strong>smarty_template_resource_base.php</strong> line 123</span></span></td></tr>
<tr><td>at <span class="trace-class"><abbr title="Smarty_Template_Resource_Base">Smarty_Template_Resource_Base</abbr></span><span class="trace-type">-&gt;</span><span class="trace-method">getRenderedTemplateCode</span>(<span class="trace-arguments"><em>object</em>(<abbr title="SmartyCustomTemplate">SmartyCustomTemplate</abbr>)</span>)<span class="block trace-file-path">in <span title="/home/erotouch187649/public_html/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php line 114"><strong>smarty_template_compiled.php</strong> line 114</span></span></td></tr>
<tr><td>at <span class="trace-class"><abbr title="Smarty_Template_Compiled">Smarty_Template_Compiled</abbr></span><span class="trace-type">-&gt;</span><span class="trace-method">render</span>(<span class="trace-arguments"><em>object</em>(<abbr title="SmartyCustomTemplate">SmartyCustomTemplate</abbr>)</span>)<span class="block trace-file-path">in <span title="/home/erotouch187649/public_html/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php line 216"><strong>smarty_internal_template.php</strong> line 216</span></span></td></tr>
<tr><td>at <span class="trace-class"><abbr title="Smarty_Internal_Template">Smarty_Internal_Template</abbr></span><span class="trace-type">-&gt;</span><span class="trace-method">render</span>(<span class="trace-arguments"></span>)<span class="block trace-file-path">in <span title="/home/erotouch187649/public_html/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php line 385"><strong>smarty_internal_template.php</strong> line 385</span></span></td></tr>
<tr><td>at <span class="trace-class"><abbr title="Smarty_Internal_Template">Smarty_Internal_Template</abbr></span><span class="trace-type">-&gt;</span><span class="trace-method">_subTemplateRender</span>(<span class="trace-arguments">'file:catalog/_partials/product-prices.tpl', <em>null</em>, 'warehouselayouts/layout-full-width.tpl', 0, 3600, <em>array</em>(), 0, <em>false</em></span>)<span class="block trace-file-path">in <span title="/home/erotouch187649/public_html/var/cache/dev/smarty/compile/warehouselayouts_layout_full_width_tpl/a9/f8/06/a9f806bb1c91d34ccc2b00bfaa3fc987c5ab6cef_2.file.product.tpl.php line 352"><strong>a9f806bb1c91d34ccc2b00bfaa3fc987c5ab6cef_2.file.product.tpl.php</strong> line 352</span></span></td></tr>
<tr><td>at <span class="trace-class"><abbr title="Block_72616028603bcecd658195_08186330">Block_72616028603bcecd658195_08186330</abbr></span><span class="trace-type">-&gt;</span><span class="trace-method">callBlock</span>(<span class="trace-arguments"><em>object</em>(<abbr title="SmartyCustomTemplate">SmartyCustomTemplate</abbr>)</span>)<span class="block trace-file-path">in <span title="/home/erotouch187649/public_html/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php line 248"><strong>smarty_internal_runtime_inheritance.php</strong> line 248</span></span></td></tr>
<tr><td>at <span class="trace-class"><abbr title="Smarty_Internal_Runtime_Inheritance">Smarty_Internal_Runtime_Inheritance</abbr></span><span class="trace-type">-&gt;</span><span class="trace-method">callBlock</span>(<span class="trace-arguments"><em>object</em>(<abbr title="Block_72616028603bcecd658195_08186330">Block_72616028603bcecd658195_08186330</abbr>), <em>object</em>(<abbr title="SmartyCustomTemplate">SmartyCustomTemplate</abbr>)</span>)<span class="block trace-file-path">in <span title="/home/erotouch187649/public_html/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php line 184"><strong>smarty_internal_runtime_inheritance.php</strong> line 184</span></span></td></tr>
<tr><td>at <span class="trace-class"><abbr title="Smarty_Internal_Runtime_Inheritance">Smarty_Internal_Runtime_Inheritance</abbr></span><span class="trace-type">-&gt;</span><span class="trace-method">process</span>(<span class="trace-arguments"><em>object</em>(<abbr title="SmartyCustomTemplate">SmartyCustomTemplate</abbr>), <em>object</em>(<abbr title="Block_72616028603bcecd658195_08186330">Block_72616028603bcecd658195_08186330</abbr>)</span>)<span class="block trace-file-path">in <span title="/home/erotouch187649/public_html/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php line 156"><strong>smarty_internal_runtime_inheritance.php</strong> line 156</span></span></td></tr>
<tr><td>at <span class="trace-class"><abbr title="Smarty_Internal_Runtime_Inheritance">Smarty_Internal_Runtime_Inheritance</abbr></span><span class="trace-type">-&gt;</span><span class="trace-method">instanceBlock</span>(<span class="trace-arguments"><em>object</em>(<abbr title="SmartyCustomTemplate">SmartyCustomTemplate</abbr>), 'Block_72616028603bcecd658195_08186330', 'product_prices', 0</span>)<span class="block trace-file-path">in <span title="/home/erotouch187649/public_html/var/cache/dev/smarty/compile/warehouselayouts_layout_full_width_tpl/a9/f8/06/a9f806bb1c91d34ccc2b00bfaa3fc987c5ab6cef_2.file.product.tpl.php line 387"><strong>a9f806bb1c91d34ccc2b00bfaa3fc987c5ab6cef_2.file.product.tpl.php</strong> line 387</span></span></td></tr>
<tr><td>at <span class="trace-class"><abbr title="Block_1049306321603bcecd6421b2_55832712">Block_1049306321603bcecd6421b2_55832712</abbr></span><span class="trace-type">-&gt;</span><span class="trace-method">callBlock</span>(<span class="trace-arguments"><em>object</em>(<abbr title="SmartyCustomTemplate">SmartyCustomTemplate</abbr>)</span>)<span class="block trace-file-path">in <span title="/home/erotouch187649/public_html/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php line 248"><strong>smarty_internal_runtime_inheritance.php</strong> line 248</span></span></td></tr>
<tr><td>at <span class="trace-class"><abbr title="Smarty_Internal_Runtime_Inheritance">Smarty_Internal_Runtime_Inheritance</abbr></span><span class="trace-type">-&gt;</span><span class="trace-method">callBlock</span>(<span class="trace-arguments"><em>object</em>(<abbr title="Block_1049306321603bcecd6421b2_55832712">Block_1049306321603bcecd6421b2_55832712</abbr>), <em>object</em>(<abbr title="SmartyCustomTemplate">SmartyCustomTemplate</abbr>)</span>)<span class="block trace-file-path">in <span title="/home/erotouch187649/public_html/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php line 184"><strong>smarty_internal_runtime_inheritance.php</strong> line 184</span></span></td></tr>
<tr><td>at <span class="trace-class"><abbr title="Smarty_Internal_Runtime_Inheritance">Smarty_Internal_Runtime_Inheritance</abbr></span><span class="trace-type">-&gt;</span><span class="trace-method">process</span>(<span class="trace-arguments"><em>object</em>(<abbr title="SmartyCustomTemplate">SmartyCustomTemplate</abbr>), <em>object</em>(<abbr title="Block_1049306321603bcecd6421b2_55832712">Block_1049306321603bcecd6421b2_55832712</abbr>)</span>)<span class="block trace-file-path">in <span title="/home/erotouch187649/public_html/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php line 156"><strong>smarty_internal_runtime_inheritance.php</strong> line 156</span></span></td></tr>
<tr><td>at <span class="trace-class"><abbr title="Smarty_Internal_Runtime_Inheritance">Smarty_Internal_Runtime_Inheritance</abbr></span><span class="trace-type">-&gt;</span><span class="trace-method">instanceBlock</span>(<span class="trace-arguments"><em>object</em>(<abbr title="SmartyCustomTemplate">SmartyCustomTemplate</abbr>), 'Block_1049306321603bcecd6421b2_55832712', 'page_header_container', 0</span>)<span class="block trace-file-path">in <span title="/home/erotouch187649/public_html/var/cache/dev/smarty/compile/warehouselayouts_layout_full_width_tpl/a9/f8/06/a9f806bb1c91d34ccc2b00bfaa3fc987c5ab6cef_2.file.product.tpl.php line 941"><strong>a9f806bb1c91d34ccc2b00bfaa3fc987c5ab6cef_2.file.product.tpl.php</strong> line 941</span></span></td></tr>
<tr><td>at <span class="trace-class"><abbr title="Block_2047783401603bcecd62ebd3_70361005">Block_2047783401603bcecd62ebd3_70361005</abbr></span><span class="trace-type">-&gt;</span><span class="trace-method">callBlock</span>(<span class="trace-arguments"><em>object</em>(<abbr title="SmartyCustomTemplate">SmartyCustomTemplate</abbr>)</span>)<span class="block trace-file-path">in <span title="/home/erotouch187649/public_html/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php line 248"><strong>smarty_internal_runtime_inheritance.php</strong> line 248</span></span></td></tr>
<tr><td>at <span class="trace-class"><abbr title="Smarty_Internal_Runtime_Inheritance">Smarty_Internal_Runtime_Inheritance</abbr></span><span class="trace-type">-&gt;</span><span class="trace-method">callBlock</span>(<span class="trace-arguments"><em>object</em>(<abbr title="Block_2047783401603bcecd62ebd3_70361005">Block_2047783401603bcecd62ebd3_70361005</abbr>), <em>object</em>(<abbr title="SmartyCustomTemplate">SmartyCustomTemplate</abbr>)</span>)<span class="block trace-file-path">in <span title="/home/erotouch187649/public_html/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php line 184"><strong>smarty_internal_runtime_inheritance.php</strong> line 184</span></span></td></tr>
<tr><td>at <span class="trace-class"><abbr title="Smarty_Internal_Runtime_Inheritance">Smarty_Internal_Runtime_Inheritance</abbr></span><span class="trace-type">-&gt;</span><span class="trace-method">process</span>(<span class="trace-arguments"><em>object</em>(<abbr title="SmartyCustomTemplate">SmartyCustomTemplate</abbr>), <em>object</em>(<abbr title="Block_2047783401603bcecd62ebd3_70361005">Block_2047783401603bcecd62ebd3_70361005</abbr>), <em>object</em>(<abbr title="Block_252744448603bcecd6ad226_09339298">Block_252744448603bcecd6ad226_09339298</abbr>)</span>)<span class="block trace-file-path">in <span title="/home/erotouch187649/public_html/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php line 186"><strong>smarty_internal_runtime_inheritance.php</strong> line 186</span></span></td></tr>
<tr><td>at <span class="trace-class"><abbr title="Smarty_Internal_Runtime_Inheritance">Smarty_Internal_Runtime_Inheritance</abbr></span><span class="trace-type">-&gt;</span><span class="trace-method">process</span>(<span class="trace-arguments"><em>object</em>(<abbr title="SmartyCustomTemplate">SmartyCustomTemplate</abbr>), <em>object</em>(<abbr title="Block_252744448603bcecd6ad226_09339298">Block_252744448603bcecd6ad226_09339298</abbr>)</span>)<span class="block trace-file-path">in <span title="/home/erotouch187649/public_html/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php line 156"><strong>smarty_internal_runtime_inheritance.php</strong> line 156</span></span></td></tr>
<tr><td>at <span class="trace-class"><abbr title="Smarty_Internal_Runtime_Inheritance">Smarty_Internal_Runtime_Inheritance</abbr></span><span class="trace-type">-&gt;</span><span class="trace-method">instanceBlock</span>(<span class="trace-arguments"><em>object</em>(<abbr title="SmartyCustomTemplate">SmartyCustomTemplate</abbr>), 'Block_252744448603bcecd6ad226_09339298', 'content', 1</span>)<span class="block trace-file-path">in <span title="/home/erotouch187649/public_html/var/cache/dev/smarty/compile/warehouselayouts_layout_full_width_tpl/a3/fc/d0/a3fcd098f36d1aba432da2933539ffbc3a15b5cc_2.file.layout-full-width.tpl.php line 135"><strong>a3fcd098f36d1aba432da2933539ffbc3a15b5cc_2.file.layout-full-width.tpl.php</strong> line 135</span></span></td></tr>
<tr><td>at <span class="trace-class"><abbr title="Block_204531209603bcecd6ac5d1_65077858">Block_204531209603bcecd6ac5d1_65077858</abbr></span><span class="trace-type">-&gt;</span><span class="trace-method">callBlock</span>(<span class="trace-arguments"><em>object</em>(<abbr title="SmartyCustomTemplate">SmartyCustomTemplate</abbr>)</span>)<span class="block trace-file-path">in <span title="/home/erotouch187649/public_html/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php line 248"><strong>smarty_internal_runtime_inheritance.php</strong> line 248</span></span></td></tr>
<tr><td>at <span class="trace-class"><abbr title="Smarty_Internal_Runtime_Inheritance">Smarty_Internal_Runtime_Inheritance</abbr></span><span class="trace-type">-&gt;</span><span class="trace-method">callBlock</span>(<span class="trace-arguments"><em>object</em>(<abbr title="Block_204531209603bcecd6ac5d1_65077858">Block_204531209603bcecd6ac5d1_65077858</abbr>), <em>object</em>(<abbr title="SmartyCustomTemplate">SmartyCustomTemplate</abbr>)</span>)<span class="block trace-file-path">in <span title="/home/erotouch187649/public_html/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php line 184"><strong>smarty_internal_runtime_inheritance.php</strong> line 184</span></span></td></tr>
<tr><td>at <span class="trace-class"><abbr title="Smarty_Internal_Runtime_Inheritance">Smarty_Internal_Runtime_Inheritance</abbr></span><span class="trace-type">-&gt;</span><span class="trace-method">process</span>(<span class="trace-arguments"><em>object</em>(<abbr title="SmartyCustomTemplate">SmartyCustomTemplate</abbr>), <em>object</em>(<abbr title="Block_204531209603bcecd6ac5d1_65077858">Block_204531209603bcecd6ac5d1_65077858</abbr>), <em>object</em>(<abbr title="Block_1481998161603bcecd6cf0e8_04276239">Block_1481998161603bcecd6cf0e8_04276239</abbr>)</span>)<span class="block trace-file-path">in <span title="/home/erotouch187649/public_html/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php line 186"><strong>smarty_internal_runtime_inheritance.php</strong> line 186</span></span></td></tr>
<tr><td>at <span class="trace-class"><abbr title="Smarty_Internal_Runtime_Inheritance">Smarty_Internal_Runtime_Inheritance</abbr></span><span class="trace-type">-&gt;</span><span class="trace-method">process</span>(<span class="trace-arguments"><em>object</em>(<abbr title="SmartyCustomTemplate">SmartyCustomTemplate</abbr>), <em>object</em>(<abbr title="Block_1481998161603bcecd6cf0e8_04276239">Block_1481998161603bcecd6cf0e8_04276239</abbr>)</span>)<span class="block trace-file-path">in <span title="/home/erotouch187649/public_html/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php line 156"><strong>smarty_internal_runtime_inheritance.php</strong> line 156</span></span></td></tr>
<tr><td>at <span class="trace-class"><abbr title="Smarty_Internal_Runtime_Inheritance">Smarty_Internal_Runtime_Inheritance</abbr></span><span class="trace-type">-&gt;</span><span class="trace-method">instanceBlock</span>(<span class="trace-arguments"><em>object</em>(<abbr title="SmartyCustomTemplate">SmartyCustomTemplate</abbr>), 'Block_1481998161603bcecd6cf0e8_04276239', 'content_wrapper'</span>)<span class="block trace-file-path">in <span title="/home/erotouch187649/public_html/var/cache/dev/smarty/compile/warehouselayouts_layout_full_width_tpl/31/45/88/314588efa7c8eecfa3ecf82438dd21d7f8e07f67_2.file.layout-both-columns.tpl.php line 106"><strong>314588efa7c8eecfa3ecf82438dd21d7f8e07f67_2.file.layout-both-columns.tpl.php</strong> line 106</span></span></td></tr>
<tr><td>at <span class="trace-class"><abbr title=""></abbr></span><span class="trace-type"></span><span class="trace-method">content_603bcecd6f07a0_37047356</span>(<span class="trace-arguments"><em>object</em>(<abbr title="SmartyCustomTemplate">SmartyCustomTemplate</abbr>)</span>)<span class="block trace-file-path">in <span title="/home/erotouch187649/public_html/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php line 123"><strong>smarty_template_resource_base.php</strong> line 123</span></span></td></tr>
<tr><td>at <span class="trace-class"><abbr title="Smarty_Template_Resource_Base">Smarty_Template_Resource_Base</abbr></span><span class="trace-type">-&gt;</span><span class="trace-method">getRenderedTemplateCode</span>(<span class="trace-arguments"><em>object</em>(<abbr title="SmartyCustomTemplate">SmartyCustomTemplate</abbr>)</span>)<span class="block trace-file-path">in <span title="/home/erotouch187649/public_html/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php line 114"><strong>smarty_template_compiled.php</strong> line 114</span></span></td></tr>
<tr><td>at <span class="trace-class"><abbr title="Smarty_Template_Compiled">Smarty_Template_Compiled</abbr></span><span class="trace-type">-&gt;</span><span class="trace-method">render</span>(<span class="trace-arguments"><em>object</em>(<abbr title="SmartyCustomTemplate">SmartyCustomTemplate</abbr>)</span>)<span class="block trace-file-path">in <span title="/home/erotouch187649/public_html/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php line 216"><strong>smarty_internal_template.php</strong> line 216</span></span></td></tr>
<tr><td>at <span class="trace-class"><abbr title="Smarty_Internal_Template">Smarty_Internal_Template</abbr></span><span class="trace-type">-&gt;</span><span class="trace-method">render</span>(<span class="trace-arguments"></span>)<span class="block trace-file-path">in <span title="/home/erotouch187649/public_html/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php line 385"><strong>smarty_internal_template.php</strong> line 385</span></span></td></tr>
<tr><td>at <span class="trace-class"><abbr title="Smarty_Internal_Template">Smarty_Internal_Template</abbr></span><span class="trace-type">-&gt;</span><span class="trace-method">_subTemplateRender</span>(<span class="trace-arguments">'layouts/layout-both-columns.tpl', <em>null</em>, 'warehouselayouts/layout-full-width.tpl', 0, 3600, <em>array</em>(), 2, <em>false</em>, <em>null</em>, <em>null</em></span>)<span class="block trace-file-path">in <span title="/home/erotouch187649/public_html/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php line 125"><strong>smarty_internal_runtime_inheritance.php</strong> line 125</span></span></td></tr>
<tr><td>at <span class="trace-class"><abbr title="Smarty_Internal_Runtime_Inheritance">Smarty_Internal_Runtime_Inheritance</abbr></span><span class="trace-type">-&gt;</span><span class="trace-method">endChild</span>(<span class="trace-arguments"><em>object</em>(<abbr title="SmartyCustomTemplate">SmartyCustomTemplate</abbr>), 'layouts/layout-both-columns.tpl'</span>)<span class="block trace-file-path">in <span title="/home/erotouch187649/public_html/var/cache/dev/smarty/compile/warehouselayouts_layout_full_width_tpl/a3/fc/d0/a3fcd098f36d1aba432da2933539ffbc3a15b5cc_2.file.layout-full-width.tpl.php line 50"><strong>a3fcd098f36d1aba432da2933539ffbc3a15b5cc_2.file.layout-full-width.tpl.php</strong> line 50</span></span></td></tr>
<tr><td>at <span class="trace-class"><abbr title=""></abbr></span><span class="trace-type"></span><span class="trace-method">content_603bcecd6aef72_71581118</span>(<span class="trace-arguments"><em>object</em>(<abbr title="SmartyCustomTemplate">SmartyCustomTemplate</abbr>)</span>)<span class="block trace-file-path">in <span title="/home/erotouch187649/public_html/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php line 123"><strong>smarty_template_resource_base.php</strong> line 123</span></span></td></tr>
<tr><td>at <span class="trace-class"><abbr title="Smarty_Template_Resource_Base">Smarty_Template_Resource_Base</abbr></span><span class="trace-type">-&gt;</span><span class="trace-method">getRenderedTemplateCode</span>(<span class="trace-arguments"><em>object</em>(<abbr title="SmartyCustomTemplate">SmartyCustomTemplate</abbr>)</span>)<span class="block trace-file-path">in <span title="/home/erotouch187649/public_html/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php line 114"><strong>smarty_template_compiled.php</strong> line 114</span></span></td></tr>
<tr><td>at <span class="trace-class"><abbr title="Smarty_Template_Compiled">Smarty_Template_Compiled</abbr></span><span class="trace-type">-&gt;</span><span class="trace-method">render</span>(<span class="trace-arguments"><em>object</em>(<abbr title="SmartyCustomTemplate">SmartyCustomTemplate</abbr>)</span>)<span class="block trace-file-path">in <span title="/home/erotouch187649/public_html/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php line 216"><strong>smarty_internal_template.php</strong> line 216</span></span></td></tr>
<tr><td>at <span class="trace-class"><abbr title="Smarty_Internal_Template">Smarty_Internal_Template</abbr></span><span class="trace-type">-&gt;</span><span class="trace-method">render</span>(<span class="trace-arguments"></span>)<span class="block trace-file-path">in <span title="/home/erotouch187649/public_html/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php line 385"><strong>smarty_internal_template.php</strong> line 385</span></span></td></tr>
<tr><td>at <span class="trace-class"><abbr title="Smarty_Internal_Template">Smarty_Internal_Template</abbr></span><span class="trace-type">-&gt;</span><span class="trace-method">_subTemplateRender</span>(<span class="trace-arguments">'layouts/layout-full-width.tpl', <em>null</em>, 'warehouselayouts/layout-full-width.tpl', 0, 3600, <em>array</em>(), 2, <em>false</em>, <em>null</em>, <em>null</em></span>)<span class="block trace-file-path">in <span title="/home/erotouch187649/public_html/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php line 125"><strong>smarty_internal_runtime_inheritance.php</strong> line 125</span></span></td></tr>
<tr><td>at <span class="trace-class"><abbr title="Smarty_Internal_Runtime_Inheritance">Smarty_Internal_Runtime_Inheritance</abbr></span><span class="trace-type">-&gt;</span><span class="trace-method">endChild</span>(<span class="trace-arguments"><em>object</em>(<abbr title="SmartyCustomTemplate">SmartyCustomTemplate</abbr>), 'layouts/layout-full-width.tpl'</span>)<span class="block trace-file-path">in <span title="/home/erotouch187649/public_html/var/cache/dev/smarty/compile/warehouselayouts_layout_full_width_tpl/a9/f8/06/a9f806bb1c91d34ccc2b00bfaa3fc987c5ab6cef_2.file.product.tpl.php line 65"><strong>a9f806bb1c91d34ccc2b00bfaa3fc987c5ab6cef_2.file.product.tpl.php</strong> line 65</span></span></td></tr>
<tr><td>at <span class="trace-class"><abbr title=""></abbr></span><span class="trace-type"></span><span class="trace-method">content_603bcecd694757_06810628</span>(<span class="trace-arguments"><em>object</em>(<abbr title="SmartyCustomTemplate">SmartyCustomTemplate</abbr>)</span>)<span class="block trace-file-path">in <span title="/home/erotouch187649/public_html/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php line 123"><strong>smarty_template_resource_base.php</strong> line 123</span></span></td></tr>
<tr><td>at <span class="trace-class"><abbr title="Smarty_Template_Resource_Base">Smarty_Template_Resource_Base</abbr></span><span class="trace-type">-&gt;</span><span class="trace-method">getRenderedTemplateCode</span>(<span class="trace-arguments"><em>object</em>(<abbr title="SmartyCustomTemplate">SmartyCustomTemplate</abbr>)</span>)<span class="block trace-file-path">in <span title="/home/erotouch187649/public_html/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php line 114"><strong>smarty_template_compiled.php</strong> line 114</span></span></td></tr>
<tr><td>at <span class="trace-class"><abbr title="Smarty_Template_Compiled">Smarty_Template_Compiled</abbr></span><span class="trace-type">-&gt;</span><span class="trace-method">render</span>(<span class="trace-arguments"><em>object</em>(<abbr title="SmartyCustomTemplate">SmartyCustomTemplate</abbr>)</span>)<span class="block trace-file-path">in <span title="/home/erotouch187649/public_html/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php line 216"><strong>smarty_internal_template.php</strong> line 216</span></span></td></tr>
<tr><td>at <span class="trace-class"><abbr title="Smarty_Internal_Template">Smarty_Internal_Template</abbr></span><span class="trace-type">-&gt;</span><span class="trace-method">render</span>(<span class="trace-arguments"><em>false</em>, 0</span>)<span class="block trace-file-path">in <span title="/home/erotouch187649/public_html/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php line 232"><strong>smarty_internal_templatebase.php</strong> line 232</span></span></td></tr>
<tr><td>at <span class="trace-class"><abbr title="Smarty_Internal_TemplateBase">Smarty_Internal_TemplateBase</abbr></span><span class="trace-type">-&gt;</span><span class="trace-method">_execute</span>(<span class="trace-arguments"><em>object</em>(<abbr title="SmartyCustomTemplate">SmartyCustomTemplate</abbr>), <em>null</em>, 'warehouselayouts/layout-full-width.tpl', <em>null</em>, 0</span>)<span class="block trace-file-path">in <span title="/home/erotouch187649/public_html/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php line 116"><strong>smarty_internal_templatebase.php</strong> line 116</span></span></td></tr>
<tr><td>at <span class="trace-class"><abbr title="Smarty_Internal_TemplateBase">Smarty_Internal_TemplateBase</abbr></span><span class="trace-type">-&gt;</span><span class="trace-method">fetch</span>(<span class="trace-arguments">'catalog/product.tpl', <em>null</em>, 'warehouselayouts/layout-full-width.tpl', <em>null</em>, <em>false</em>, <em>true</em>, <em>false</em></span>)<span class="block trace-file-path">in <span title="/home/erotouch187649/public_html/classes/Smarty/SmartyCustom.php line 112"><strong>SmartyCustom.php</strong> line 112</span></span></td></tr>
<tr><td>at <span class="trace-class"><abbr title="SmartyCustomCore">SmartyCustomCore</abbr></span><span class="trace-type">-&gt;</span><span class="trace-method">fetch</span>(<span class="trace-arguments">'catalog/product.tpl', <em>null</em>, 'warehouselayouts/layout-full-width.tpl'</span>)<span class="block trace-file-path">in <span title="/home/erotouch187649/public_html/classes/controller/FrontController.php line 704"><strong>FrontController.php</strong> line 704</span></span></td></tr>
<tr><td>at <span class="trace-class"><abbr title="FrontControllerCore">FrontControllerCore</abbr></span><span class="trace-type">-&gt;</span><span class="trace-method">smartyOutputContent</span>(<span class="trace-arguments">'catalog/product.tpl'</span>)<span class="block trace-file-path">in <span title="/home/erotouch187649/public_html/classes/controller/FrontController.php line 686"><strong>FrontController.php</strong> line 686</span></span></td></tr>
<tr><td>at <span class="trace-class"><abbr title="FrontControllerCore">FrontControllerCore</abbr></span><span class="trace-type">-&gt;</span><span class="trace-method">display</span>(<span class="trace-arguments"></span>)<span class="block trace-file-path">in <span title="/home/erotouch187649/public_html/classes/controller/Controller.php line 326"><strong>Controller.php</strong> line 326</span></span></td></tr>
<tr><td>at <span class="trace-class"><abbr title="ControllerCore">ControllerCore</abbr></span><span class="trace-type">-&gt;</span><span class="trace-method">run</span>(<span class="trace-arguments"></span>)<span class="block trace-file-path">in <span title="/home/erotouch187649/public_html/classes/Dispatcher.php line 518"><strong>Dispatcher.php</strong> line 518</span></span></td></tr>
<tr><td>at <span class="trace-class"><abbr title="DispatcherCore">DispatcherCore</abbr></span><span class="trace-type">-&gt;</span><span class="trace-method">dispatch</span>(<span class="trace-arguments"></span>)<span class="block trace-file-path">in <span title="/home/erotouch187649/public_html/index.php line 28"><strong>index.php</strong> line 28</span></span></td></tr>
</tbody>
</table>
</div>

            </div>
    
</body></html>

Best Regards,

Jelte

vxmretail

vxmretail

Hi,

I see a problem in my error log:

[28-Feb-2021 17:56:34 Europe/Amsterdam] PHP Warning:  htmlspecialchars() expects parameter 1 to be string, array given in /home/XXX/public_html/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/a4/5e/c8/a45ec8b6e41f76c7af2e5ff1fb03cffacfb2ee57_2.file.product-prices.tpl.php on line 226
 

Line 226:

<span class="current-price"><span itemprop="price" class="product-price" content="<?php echo htmlspecialchars($_smarty_tpl->tpl_vars['product']->value['rounded_display_price'], ENT_QUOTES, 'UTF-8');?>
"><?php echo htmlspecialchars($_smarty_tpl->tpl_vars['product']->value['price'], ENT_QUOTES, 'UTF-8');?>

This is my product-prices.tpl file

{**
 * 2007-2017 PrestaShop
 *
 * NOTICE OF LICENSE
 *
 * This source file is subject to the Open Software License (OSL 3.0)
 * that is bundled with this package in the file LICENSE.txt.
 * It is also available through the world-wide-web at this URL:
 * http://opensource.org/licenses/osl-3.0.php
 * If you did not receive a copy of the license and are unable to
 * obtain it through the world-wide-web, please send an email
 * to [email protected] so we can send you a copy immediately.
 *
 * 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 refer to http://www.prestashop.com for more information.
 *
 * @author    PrestaShop SA <contact@prestashop.com>
 * @copyright 2007-2017 PrestaShop SA
 * @license   http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
 * International Registered Trademark & Property of PrestaShop SA
 *}



    <div class="product-prices">
        {block name='product_reference'}
            {if $iqitTheme.pp_reference == 'title'}
            {if isset($product.reference_to_display) && $product.reference_to_display neq ''}
                <div class="product-reference">
                    <label class="label">{l s='Reference' d='Shop.Theme.Catalog'} </label>                    <span itemprop="sku">{$product.reference_to_display}</span>					<br />					<label class="label">{l s='Ean13' d='Shop.Theme.Catalog'}:</label>					<span itemprop="gtin13" content="{$product.ean13}">{$product.ean13}</span>
                </div>
            {/if}
            {/if}
        {/block}



        {if $product.show_price}
        {if !$configuration.is_catalog}
            {block name='product_availability'}
                {if $product.show_availability && $product.availability_message}
                    <span id="product-availability"
                          class="badge {if $product.availability == 'available'} {if $product.quantity <= 0  && !$product.allow_oosp} badge-danger product-unavailable  {elseif $product.quantity <= 0  && $product.allow_oosp}badge-warning product-unavailable-allow-oosp {else}badge-success product-available{/if}{elseif $product.availability == 'last_remaining_items'}badge-warning product-last-items{else}badge-danger product-unavailable{/if}">
                  {if $product.availability == 'available'}
                      <i class="fa fa-check rtl-no-flip" aria-hidden="true"></i>
                                                     {$product.availability_message}
                  {elseif $product.availability == 'last_remaining_items'}
                      <i class="fa fa-exclamation" aria-hidden="true"></i>
                                                     {$product.availability_message}
                  {else}
                      <i class="fa fa-ban" aria-hidden="true"></i>
                              {$product.availability_message}
                      {if isset($product.available_date) && $product.available_date != '0000-00-00'}
                      {if $product.available_date|strtotime > $smarty.now}<span
                              class="available-date">{l s='until' d='Shop.Theme.Catalog'} {$product.available_date}</span>{/if}
                  {/if}
                  {/if}
                </span>
                {/if}
            {/block}
        {/if}


        {block name='product_price'}
            <div class="{if $product.has_discount}has-discount{/if}"
                 itemprop="offers"
                 itemscope
                 itemtype="https://schema.org/Offer"
            >

                {if isset($product.seo_availability)}
                    <link itemprop="availability" href="{$product.seo_availability}"/>
                {else}
                    <link itemprop="availability" href="https://schema.org/InStock"/>
                {/if}
                <meta itemprop="priceCurrency" content="{$currency.iso_code}">
                <meta itemprop="url" content="{$product.url}">


                <div>
                    <span itemprop="price" class="product-price" content="{$product.rounded_display_price}">{$product.price}</span>
                    {if $product.has_discount}
                        <span class="product-discount">
                            {hook h='displayProductPriceBlock' product=$product type="old_price"}
                            <span class="regular-price">{$product.regular_price}</span>
                         </span>

                        {if $product.discount_type === 'percentage'}
                            <span class="badge badge-discount discount discount-percentage">-{$product.discount_percentage_absolute}</span>
                        {else}
                            <span class="badge badge-discount discount discount-amount">-{$product.discount_to_display}</span>
                        {/if}

                        {if isset($product.specific_prices.to) && $product.specific_prices.to != '0000-00-00 00:00:00'}<meta itemprop="priceValidUntil" content="{$product.specific_prices.to}"/>{/if}

                    {/if}
                </div>
				                {block name='product_unit_price'}
                    {if $displayUnitPrice}
                        <p class="product-unit-price text-muted">{l s='(%unit_price%)' d='Shop.Theme.Catalog' sprintf=['%unit_price%' => $product.unit_price_full]}</p>
                    {/if}
                {/block}
            </div>
        {/block}

        {block name='product_without_taxes'}
            {if $priceDisplay == 2}
                <p class="product-without-taxes text-muted">{l s='%price% tax excl.' d='Shop.Theme.Catalog' sprintf=['%price%' => $product.price_tax_exc]}</p>
            {/if}
        {/block}

        {block name='product_pack_price'}
            {if $displayPackPrice}
                <p class="product-pack-price">
                    <span>{l s='Instead of %price%' d='Shop.Theme.Catalog' sprintf=['%price%' => $noPackPrice]}</span>
                </p>
            {/if}
        {/block}

        {block name='product_ecotax'}
            {if $product.ecotax.amount > 0}
                <p class="price-ecotax text-muted">{l s='Including %amount% for ecotax' d='Shop.Theme.Catalog' sprintf=['%amount%' => $product.ecotax.value]}
                    {if $product.has_discount}
                        {l s='(not impacted by the discount)' d='Shop.Theme.Catalog'}
                    {/if}
                </p>
            {/if}
        {/block}

        {hook h='displayProductPriceBlock' product=$product type="weight" hook_origin='product_sheet'}

        <div class="tax-shipping-delivery-label text-muted">
            {if isset($configuration.taxes_enabled) && !$configuration.taxes_enabled}
                {l s='No tax' d='Shop.Theme.Catalog'}
            {elseif $configuration.display_taxes_label}
                {$product.labels.tax_long}
            {/if}
            {hook h='displayProductPriceBlock' product=$product type="price"}
            {hook h='displayProductPriceBlock' product=$product type="after_price"}
            {if $product.additional_delivery_times == 1}
                {if $product.delivery_information}
                    <span class="delivery-information">{$product.delivery_information}</span>
                {/if}
            {elseif $product.additional_delivery_times == 2}
                {if $product.quantity > 0}
                    <span class="delivery-information">{$product.delivery_in_stock}</span>
                    {* Out of stock message should not be displayed if customer can't order the product. *}
                    {elseif $product.quantity <= 0 && $product.add_to_cart_url}
                    <span class="delivery-information">{$product.delivery_out_stock}</span>
                {/if}
            {/if}
        </div>
        {hook h='displayCountDown'}
        {/if}		
    </div>

Does anyone know a solution?
Thanks!

Best Regards,

Jelte

×
×
  • Create New...