Jump to content

HTML Code manuell hinzufügen (Pinterest)


juju298

Recommended Posts

Hey zusammen, 

ich möchte gerne das Pinterest Tag installieren. IN deren Beschreibung steht, ich muss den Base Code manuell jeder Seite hinzufügen, zwischen den Tags <head> und </head> in meinem HTML-Dokument. 

Weiß jemand wie ich dahin komme, bzw. wie der Pfad lautet?

Bildschirmfoto 2022-07-08 um 09.51.01.png

Link to comment
Share on other sites

  • 4 weeks later...

@rictools an welcher Stelle füge ich denn den Code ein? Laut Pinterest soll er zwischen <head> und </head> stehen, aber in meinem Code von dem head.tpl gibt es das ga nicht. 

Mein Pfad war Themes/justice/templates/_partials/head.tpl und in dem anderen theme Classic gibt es auch ein head.tpl, aber auch ohne <head> und </head>.

Der Code ist wiefolgt: 


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

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

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...