# "alte" Freitextfelder im Frontend

**URL:** https://forum.shopware.com/t/alte-freitextfelder-im-frontend/38623
**Category:** Themes & Design
**Created:** [29. Juli 2016 um 08:23 UTC](https://forum.shopware.com/t/alte-freitextfelder-im-frontend/38623 "2016-07-29T08:23:28Z")
**Posts on this page:** 4
**Page:** 1

<div class="post-metadata">

### Author: ![snagel](https://avatars.discourse-cdn.com/v4/letter/s/9fc348/32.png) [@snagel](https://forum.shopware.com/u/snagel)
#### Post date: [29. Juli 2016 um 08:23 UTC](https://forum.shopware.com/t/alte-freitextfelder-im-frontend/38623/1 "2016-07-29T08:23:28Z")

</div>

Hallo,

ich hatte in 5.1 ein Freitextfeld für die Kategorien hinterlegt, was in der linken Spalte im Frontend ausgegeben wird. Im Backend ist das Feld nach wie vor sichtbar, im Frontend erfolgt jedoch keine Ausgabe mehr. Hat sich etwas am Code geändert? Bisher bin ich zu dem Them nicht fündig geworden.

&nbsp;

```
      {extends file="parent:frontend/index/sidebar.tpl"}
      
    
       {* SEOBLOCK *}
	{block name='frontend_index_left_campaigns_bottom' append}
		{if $sCategoryContent.attribute.attribute1}
	{$sCategoryContent.attribute.attribute1}

{/if}{$sCategoryContent.ac_attr1}
	{/block}
    
 {* Trusted Shops *}
	{block name='frontend_index_left_campaigns_bottom' append}
		
	{/block}

```

&nbsp;

---

<div class="post-metadata">

### Author: ![Moritz\_Naczenski](https://dub1.discourse-cdn.com/flex013/user_avatar/forum.shopware.com/moritz_naczenski/32/7792_2.png) [@Moritz\_Naczenski](https://forum.shopware.com/u/Moritz_Naczenski)
#### Post date: [29. Juli 2016 um 08:35 UTC](https://forum.shopware.com/t/alte-freitextfelder-im-frontend/38623/2 "2016-07-29T08:35:15Z")

</div>

Also bei mir funktioniert&nbsp;{$sCategoryContent.attribute.attribute1} als Variable in der sitebar.tpl einwandfrei.

---

<div class="post-metadata">

### Author: ![steinsoftware](https://avatars.discourse-cdn.com/v4/letter/s/b487fb/32.png) [@steinsoftware](https://forum.shopware.com/u/steinsoftware)
#### Post date: [29. Juli 2016 um 09:13 UTC](https://forum.shopware.com/t/alte-freitextfelder-im-frontend/38623/3 "2016-07-29T09:13:03Z")

</div>

Probier mal das hier:

```
{extends file="parent:frontend/index/sidebar.tpl"}
      
{block name='frontend_index_left_campaigns_bottom'}
    {* Original block content *}
    {$smarty.block.parent}

    {* SEOBLOCK *}
    {if $sCategoryContent.attribute.attribute1}
	{$sCategoryContent.attribute.attribute1}
    {/if}

    {$sCategoryContent.ac_attr1}

    
{/block}

```

&nbsp;

---

<div class="post-metadata">

### Author: ![snagel](https://avatars.discourse-cdn.com/v4/letter/s/9fc348/32.png) [@snagel](https://forum.shopware.com/u/snagel)
#### Post date: [4. August 2016 um 12:33 UTC](https://forum.shopware.com/t/alte-freitextfelder-im-frontend/38623/4 "2016-08-04T12:33:24Z")

</div>

Die Lösung war doch naheliegender als gedacht. Der Block “frontend\_index\_left\_campaigns\_bottom” scheint in 5.2. einfach nicht mehr zu existieren. Ich habe einen anderen gewählt, nun ist alles wieder wie vorher 🙂
