86 lines
3.0 KiB
Smarty
86 lines
3.0 KiB
Smarty
{**
|
|
* 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 license@prestashop.com 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
|
|
*}
|
|
{block name='head_charset'}
|
|
<meta charset="utf-8">
|
|
{/block}
|
|
{block name='head_ie_compatibility'}
|
|
<meta http-equiv="x-ua-compatible" content="ie=edge">
|
|
{/block}
|
|
{block name='head_seo'}
|
|
<title>{block name='head_seo_title'}{$page.meta.title}{/block}</title>
|
|
{hook h="displayAfterTitleTag"}
|
|
<meta name="description" content="{block name='head_seo_description'}{$page.meta.description}{/block}">
|
|
<meta name="keywords" content="{block name='head_seo_keywords'}{$page.meta.keywords}{/block}">
|
|
{if $page.meta.robots !== 'index'}
|
|
<meta name="robots" content="{$page.meta.robots}">
|
|
{/if}
|
|
{if $page.canonical}
|
|
<link rel="canonical" href="{$page.canonical}">
|
|
{/if}
|
|
{/block}
|
|
|
|
{block name='head_viewport'}
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
{/block}
|
|
|
|
{block name='head_icons'}
|
|
<link rel="icon" type="image/vnd.microsoft.icon" href="{$shop.favicon}?{$shop.favicon_update_time}">
|
|
<link rel="shortcut icon" type="image/x-icon" href="{$shop.favicon}?{$shop.favicon_update_time}">
|
|
{/block}
|
|
|
|
{block name='stylesheets'}
|
|
{include file="_partials/stylesheets.tpl" stylesheets=$stylesheets}
|
|
{/block}
|
|
|
|
<link rel="stylesheet" href="/themes/charme/assets/css/custom.css?ver=1.0109">
|
|
|
|
{block name='javascript_head'}
|
|
{include file="_partials/javascript.tpl" javascript=$javascript.head vars=$js_custom_vars}
|
|
{/block}
|
|
|
|
{block name='hook_header'}
|
|
{$HOOK_HEADER nofilter}
|
|
{/block}
|
|
|
|
{block name='hook_extra'}{/block}
|
|
{literal}
|
|
<script type="text/javascript">
|
|
console.log('test');
|
|
(function waitForElement() {
|
|
const targetSelector = '.remaining-amount-to-free-shipping-container';
|
|
const destinationSelector = '#tc-container';
|
|
|
|
const targetElement = document.querySelector(targetSelector);
|
|
const destinationElement = document.querySelector(destinationSelector);
|
|
|
|
if (targetElement && destinationElement) {
|
|
destinationElement.insertBefore(targetElement, destinationElement.firstChild);
|
|
} else {
|
|
// Czekaj i sprawdź ponownie za 200 ms
|
|
setTimeout(waitForElement, 200);
|
|
}
|
|
})();
|
|
</script>
|
|
{/literal} |