Hi,
standardmäßig ist das Logo hier im responsive Theme RoxIVE im Ordner /out/meintemplate/img/logo.svg
hinterlegt.
Über das untenstehende Script im “header.tpl” definiert.
[B]Wie muss ich dieses Script erweitern, damit er mir je nach Sprachauswahl entweder ein de oder ein en-sprachiges Logo anzeigt?[/B]
Danke, liebe Grüße, Sandra
[I]
<div class=“col-xs-5 col-sm-6 col-md-4 logo-col”>
[{block name=“dd_layout_page_header_logo”}]
[{assign var=“slogoImg” value=$oViewConf->getViewThemeParam(‘sLogoFile’)}]
[{assign var=“sLogoWidth” value=$oViewConf->getViewThemeParam(‘sLogoWidth’)}]
[{assign var=“sLogoHeight” value=$oViewConf->getViewThemeParam(‘sLogoHeight’)}]
[B]<a href="[{$oViewConf->getHomeLink()}]" title="[{$oxcmp_shop->oxshops__oxtitleprefix->value}]">
<img src="[{$oViewConf->getImageUrl($slogoImg)}]" alt="[{$oxcmp_shop->oxshops__oxtitleprefix->value}]" style="[{if $sLogoWidth}]width:auto;max-width:[{$sLogoWidth}]px;[{/if}][{if $sLogoHeight}]height:auto;max-height:[{$sLogoHeight}]px;[{/if}]">
</a>[/B]
[{/block}]
</div>[/I]