Kategoriebeschreibung am Ende?

Hallo,

wie kann ich die Kategoriebeschreibung von oben, an das Ende der Seite verschieben?

In welchen Dateien muss ich was ändern? Ich verwende ein abgewandeltes Responsive Template.

Grüße,

Hallo @shoppilein‍,

die Datei, die du suchst, ist die “listing/index.tpl”: https://github.com/shopware/shopware/blob/5.1/themes/Frontend/Bare/frontend/listing/index.tpl. Die Anpassung müsste ca. so aussehen:

{extends file="parent:frontend/listing/index.tpl"}

{block name="frontend_listing_index_text"}{/block}

{block name="frontend_listing_index_tagcloud"}
	{if !$hasEmotion}
		{include file='frontend/listing/text.tpl'}
	{/if}

	{$smarty.block.parent}
{/block}

Viele Grüße,
Stephan Pohl  Shopware

1 „Gefällt mir“

Danke Stephan. :slight_smile: