Guten Tag,
ich arbeite mich derzeit in Shopware ein. Aktuell habe ich allerdings ein Problem, bei dem ich nicht weiterkomme.
Ich will Freitextfelder auf den Kategorieseiten ausgeben. Habe hierzu die Felder erstellt und in meinem Theme die footer.tpl so angelegt:
{extends file="parent:frontend/index/footer.tpl"}
{* Footer menu *}
{block name='frontend_index_footer_menu'}
{include file='frontend/index/footer-navigation.tpl'}
{/block}
{* Footer HF *}
{block name='frontend_index_footer_hf'}
{$sCategoryContent.attribute.attribute1}
{$sCategoryContent.attribute.attribute2}
{/block}
{* Copyright in the footer *}
{block name='frontend_index_footer_copyright'}
{* Vat info *}
{block name='frontend_index_footer_vatinfo'}
{if $sOutputNet}
{s name='FooterInfoExcludeVat' namespace="frontend/index/footer"}{/s}
{else}
{s name='FooterInfoIncludeVat' namespace="frontend/index/footer"}{/s}
{/if}
{/block}
{block name='frontend_index_footer_minimal'}
{include file="frontend/index/footer_minimal.tpl" hideCopyrightNotice=true}
{/block}
{* Shopware footer *}
{block name="frontend_index_shopware_footer"}
{* Copyright *}
{block name="frontend_index_shopware_footer_copyright"}
{s name="IndexCopyright"}{/s}
{/block}
{* Logo *}
{block name="frontend_index_shopware_footer_logo"}
{/block}
{/block}
{/block}
Mit {$sCategoryContent.attribute.attribute1} erhalte ich so keine Ausgabe. Wenn ich am Anfang {extends file=„parent:frontend/index/footer.tpl“} entferne, werden die Felder allerdings ausgegeben, dafür funktionieren manche Plugins nicht mehr, was ja normal ist. Warum die Felder mit der Vererbung nicht angezeigt werden verstehe ich nicht.
Über eine Hilfestellung, bzw. Erklärung wäre ich sehr dankbar.
VG Pfeifakopf