Hallo und sorry für die späte Antwort.
Die content.tpl aus dem bare Theme habe ich mit
{s name=“TextbausteinName” namespace=“OptionalesNamespace”}Dein Standard Inhalt des Textbausteins{/s}
ergänzt. Der Text ist jetzt an gewünschter Stelle im Frontend zu sehen.
Ich vermute, der Fehler, so bald ich das im eigenen Theme umsetze, kommt daher weil ich der neuen .tpl ja gar keine Position für den neuen Text gebe.
Mit {extends file=“parent:frontend/index/footer.tpl”} zum Beispiel habe ich wunderbar die Originale footer.tpl erweitern können. Mache ich das aber für den neuen Text, passiert nicht das was passieren soll. Oder soll der komplette Code wie unten aufgeführt in die neue .tpl?
Hier noch der komplette Code aus der content.tpl
{block name=‘frontend_index_content_inner’}
{* The configurator selection is checked at this early point
to use it in different included files in the detail template. *}
{block name=‘frontend_detail_index_configurator_settings’}
{* Variable for tracking active user variant selection *}
{$activeConfiguratorSelection = true}
{if $sArticle.sConfigurator && ($sArticle.sConfiguratorSettings.type == 1 || $sArticle.sConfiguratorSettings.type == 2)}
{* If user has no selection in this group set it to false *}
{foreach $sArticle.sConfigurator as $configuratorGroup}
{if !$configuratorGroup.selected_value}
{$activeConfiguratorSelection = false}
{/if}
{/foreach}
{/if}
{/block}
{* Product header *}
{include file=“frontend/detail/content/header.tpl”}
{* Product image *}
{block name=‘frontend_detail_index_image_container’}
{if $sArticle.image}
data-image-slider=“true”
data-image-gallery=“true”
data-maxZoom="{$theme.lightboxZoomFactor}"
data-thumbnails=".image–thumbnails"
{/if}>
{include file=“frontend/detail/image.tpl”}
{/block}
{* “Buy now” box container *}
{include file=“frontend/detail/content/buy_container.tpl”}
{* Product bundle hook point *}
{block name=“frontend_detail_index_bundle”}{/block}
{block name=“frontend_detail_index_detail”}
{* Tab navigation *}
{block name=“frontend_detail_index_tabs”}
{include file=“frontend/detail/tabs.tpl”}
{/block}
{/block}
{s name=“TextbausteinName” namespace=“OptionalesNamespace”}Dein Standard Inhalt des Textbausteins{/s}
{* Crossselling tab panel *}
{block name=“frontend_detail_index_tabs_cross_selling”}
{$showAlsoViewed = {config name=similarViewedShow}}
{$showAlsoBought = {config name=alsoBoughtShow}}
{* Tab navigation *}
{include file=“frontend/detail/content/tab_navigation.tpl”}
{* Tab content container *}
{include file=“frontend/detail/content/tab_container.tpl”}
{/block}
{/block}