Einkaufswelt: Artikelbeschreibung

Hallo, wenn ich eine Einkaufswelt oder landingpage erstelle und Artikel einfüge, wird keine Artikelbeschreibung angezeigt. Kann man das einstellen oder über ein template regeln? SW 5.0.4

Mahlzeit, dazu musst du den Block für die Beschreibung aus der box-basic.tpl kopieren und in die box-emotion.tpl an der selben Stelle wieder einfügen: [code] {* Product name *} {block name=‘frontend_listing_box_article_name’} {$sArticle.articleName|truncate:50} {/block} {* -------start--------- Produktbeschreibung im Einkaufswelten Artikel ------- *} {* Product description *} {block name=‘frontend_listing_box_article_description’}

{$sArticle.description_long|strip_tags|truncate:140}
{/block} {* ---------ende------- Produktbeschreibung im Einkaufswelten Artikel ------- *} {block name=‘frontend_listing_box_article_price_info’}
{* Product price - Unit price *} {block name=‘frontend_listing_box_article_unit’} {include file=“frontend/listing/product-box/product-price-unit.tpl”} {/block} {* Product price - Default and discount price *} {block name=‘frontend_listing_box_article_price’} {include file=“frontend/listing/product-box/product-price.tpl”} {/block}[/code]

ist das noch aktuell? Also die Lösung?