Kategorietext unterhalb der Artikel ausgeben

Hallo, ich setze gerade einen Shopware-Shop auf und nun meine Frage, ist es mit einfachen Mitteln möglich den Kategorietext unterhalb der Artikel ausgeben zu lassen? Hintergrund: Wir haben für die Suchmaschiene relativ lange Kategorietexte… Vielen Dank vorab für ein hilfreiches Feedback!

Hey, schau mal in der listing/index.tpl {\* Category headline \*} {block name="frontend\_listing\_index\_text"} {include file='frontend/listing/text.tpl'} {/block} Versetz dies mal über „Tagcloud“

1 „Gefällt mir“

Hallo vielen dank - das war einfach und hat gut geklappt. Bekommt man das jetzt noch hin, dass der Text auch Unterhalb der „Neu im Sortiment:“ Artikel erscheint? Im Template index ist der Block direkt über der Tagwolke…

Hi! Also die Überschirft hab ich hinbekommen, aber der restliche Text ist immernoch oben. Meine Datei sieht so aus: {extends file=‘frontend/index/index.tpl’} {block name=‘frontend_index_header’} {include file=‘frontend/listing/header.tpl’} {/block} {* Main content *} {block name=‘frontend_index_content’}

{* Banner *} {block name=“frontend_listing_index_banner”} {if !$sLiveShopping} {include file=‘frontend/listing/banner.tpl’ sLiveShopping=$sLiveShopping} {/if} {/block} {* Liveshopping *} {block name=“frontend_listing_index_liveshopping”} {include file=‘frontend/listing/liveshopping.tpl’} {/block} {* Change / Logic move to controller *} {if $sCategoryContent.template eq “article_listing_1col.tpl”} {assign var=“sTemplate” value=“listing-1col”} {assign var=“sBoxMode” value=“list”} {elseif $sCategoryContent.template eq “article_listing_2col.tpl”} {assign var=“sTemplate” value=“listing-2col”} {assign var=“sBoxMode” value=“table”} {elseif $sCategoryContent.template eq “article_listing_3col.tpl”} {assign var=“sTemplate” value=“listing-3col”} {assign var=“sBoxMode” value=“table”} {elseif $sCategoryContent.template eq “article_listing_4col.tpl”} {assign var=“sTemplate” value=“listing”} {assign var=“sBoxMode” value=“table”} {else} {assign var=“sTemplate” value=“listing-3col”} {assign var=“sBoxMode” value=“table”} {/if} {* Listing *} {block name=“frontend_listing_index_listing”} {include file=‘frontend/listing/listing.tpl’ sTemplate=$sTemplate} {/block} {* Category headline *} {block name=“frontend_listing_index_text”} {include file=‘frontend/listing/text.tpl’} {/block}
{/block} {* Sidebar right *} {block name=‘frontend_index_content_right’} {include file=‘frontend/listing/right.tpl’} {/block} Was mache ich falsch? :wtf: