juju298 Posted July 8, 2022 Share Posted July 8, 2022 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? Link to comment Share on other sites More sharing options...
rictools Posted July 8, 2022 Share Posted July 8, 2022 Das müßte in der Datei templates/_partials/head.tpl möglich sein. Link to comment Share on other sites More sharing options...
juju298 Posted August 2, 2022 Author Share Posted August 2, 2022 @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 More sharing options...
rictools Posted August 2, 2022 Share Posted August 2, 2022 Ja, das ist der Inhalt des Headers (halt ohne die head-Tags), du müßtest den Code irgendwo ein- bzw. anfügen können. Danach mußt du evtl. Caches löschen. Link to comment Share on other sites More sharing options...
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now