Als ich die farbigen Taps für den Mobile Chrome Browser in meinen Shop einfügen wollte bin ich auf diesen Bug gestoßen.
Im Moment wird der Tab nicht in der Shopfarbe eingefärbt, wer das jetzt schnell ändern möchte muss:
Eine neue Datei in das Verzeichnis EigenesTheme/frontend/index/header.tpl erstellen und folgenden inhalt kopieren.
{extends file="parent:frontend/index/header.tpl"}
{block name='frontend_index_header_meta_tags_ie9'}
<meta name="msapplication-navbutton-color" content="{$theme['brand-primary']}" />{* Navbutton color *}
<meta name="application-name" content="{{config name=shopName}|escapeHtml}" />{* Pinned name *}
<meta name="msapplication-starturl" content="{url controller='index'}" />{* Start url to launch from the shortcut *}
<meta name="msapplication-window" content="width=1024;height=768" />{* Size of the window to launch *}
<meta name="msapplication-TileImage" content="{link file=$theme.win8TileImage}"> {* Image of the Windows 8 tile *}
<meta name="msapplication-TileColor" content="{$theme['brand-primary']}"> {* Backgroud Color of the Windows 8 tile *}
{/block}
{* Android specifc meta tags *}
{block name='frontend_index_header_meta_tags_android'}
<meta name="theme-color" content="{$theme['brand-primary']}" />
{/block}
Den Bug habe ich schon Shopware gemeldet.
Der Bug:
Die Datei Bare/frontend/index/header.tpl ist betroffen.
In den Blöcken {block name='frontend_index_header_meta_tags_ie9'} und {block name='frontend_index_header_meta_tags_android'} muss die Smarty-Variable von "{$theme['_brand-primary']}" auf {$theme['brand-primary']} verändert werden.
Sprich den Unterstrich einfach entfernen.
<meta name="theme-color" content="{$theme['brand-primary']}" />