Jump to content

Recommended Posts

Este "header" que mostra é composto por módulos e na verdade um gancho. Para remover módulos lá, removendo o gancho do módulo, para acrescentar: ou entao alterar diretamente no template responsável (header.tpl) ou entao codar um módulo par o fim que necessitar - se for uma lógica). Se nao for, mas é do tipo texto entao através de hardcode no template (header.tpl) no bloco {$HOOK_HEADER}

Link to comment
Share on other sites

Na verdade este item da faixa com fundo preto é o gancho displayNav.

 

Ou vc posiciona um módulo neste gancho, ou edita o arquivo /themes/<seu tema>/header.tpl:

{capture name='displayNav'}{hook h='displayNav'}{/capture}
{if $smarty.capture.displayNav}
<div class="nav">
    <div class="container">
        <div class="row">
            <nav>{$smarty.capture.displayNav}</nav>
        </div>
    </div>
</div>
{/if}

Boa sorte.

  • Like 1
Link to comment
Share on other sites

Se o que vc quer é colocar um módulo que por definição não está habilitado para este hook dê uma olhada neste artigo:

https://mypresta.eu/en/art/developer/prestashop-block-tags-in-footer.html

 

Se vc não sabe como alterar a posição dos módulos procure aqui no forum pelos tutoriais.

 

Se vc quer alterar o símbolo do telefone pelo do whatsapp pode ver como aqui:

https://www.prestashop.com/forums/topic/514938-colocar-imagem-do-whatsapp-no-fale-conosco-do-rodap%C3%A9/?do=findComment&comment=2282388

 

E boa sorte!

Link to comment
Share on other sites

  • 4 years later...

Boa tarde. Cheguei nesse tópico pela busca do google. Estou a pouco tempo editando o prestashop e preciso incluir dois códigos do google analytics no template, um no head e outro no body. Localizei os arquivos na pasta do thema, mas ao abrir o .tpl fiquei em dúvida em como inserir os códigos. por exemplo:

{**
 * 2007-2019 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 <[email protected]>
 * @copyright 2007-2019 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>
  <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}">
  <meta name="application-name" content="{Configuration::get('PS_SHOP_NAME')}" />
  {if isset($pkts)}<meta name="application-version" content="{$pkts.version}" />{/if}
  {if $page.meta.robots !== 'index'}
    <meta name="robots" content="{$page.meta.robots}">
  {/if}
  {if $page.canonical}
    <link rel="canonical" href="{$page.canonical}">
  {/if}
  {block name='head_hreflang'}
  {foreach from=$urls.alternative_langs item=pageUrl key=code}
    <link rel="alternate" href="{$pageUrl}" hreflang="{$code}">
  {/foreach}
  {/block}
{/block}

{block name='head_viewport'}
  <meta name="viewport" content="width=device-width,minimum-scale=1,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}

{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}

e ainda tem outros arquivos .tpl que podem ser o correto. tipo: header.tpl , header_top.tpl , e header-1.tpl até header_7.tpl

 

os códigos do analytics são esses

head

<!-- Google Tag Manager -->
<script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
})(window,document,'script','dataLayer','GTM-N1P4wGS');</script>
<!-- End Google Tag Manager -->

body
<!-- Google Tag Manager (noscript) -->
<noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-N1P24WGS"
height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
<!-- End Google Tag Manager (noscript) -->

o que pareceu ser uma tarefa simples, acabou complicando um pouco. Caso alguém tenha uma dica seria muito importante nesse momento. Obrigado

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...