# Check24 Feed csv

**URL:** https://forum.shopware.com/t/check24-feed-csv/104619
**Category:** Shopware 6 (German)
**Created:** [23. Juli 2024 um 10:28 UTC](https://forum.shopware.com/t/check24-feed-csv/104619 "2024-07-23T10:28:01Z")
**Posts on this page:** 3
**Page:** 1

<div class="post-metadata">

### Author: ![premium-dog](https://avatars.discourse-cdn.com/v4/letter/p/779978/32.png) [@premium-dog](https://forum.shopware.com/u/premium-dog)
#### Post date: [23. Juli 2024 um 10:28 UTC](https://forum.shopware.com/t/check24-feed-csv/104619/1 "2024-07-23T10:28:01Z")

</div>

Hallo, ich weiss leider nicht, wie ich das hier hinbekommen:  
In Shopware 5 habe ich den Namen + Optionen so abgebildet:  
{$sArticle.name} {$sArticle.configurator\_options[„Farbe“]} {$sArticle.configurator\_options[„Größe“]} {$sArticle.configurator\_options[„Ausführung“]}{#S#}

—\> aber wie mache ich das mit Shopware 6 ??

---

<div class="post-metadata">

### Author: ![PromoID](https://dub1.discourse-cdn.com/flex013/user_avatar/forum.shopware.com/promoid/32/14015_2.png) [@PromoID](https://forum.shopware.com/u/PromoID)
#### Post date: [23. Juli 2024 um 11:31 UTC](https://forum.shopware.com/t/check24-feed-csv/104619/2 "2024-07-23T11:31:17Z")

</div>

AI sagt:

{{ product.translated.name }}  
{% for option in product.optionIds %}  
{% set configuratorOption = product.children | filter(child =\> child.id == option) | first %}  
{{ configuratorOption.translated.name }}  
{% endfor %}

oder

{% for option in product.options %}  
{% if option.group.translated.name == „Farbe“ or option.group.translated.name == „Größe“ %}  
{{ option.translated.name }}  
{% endif %}  
{% endfor %}

Bin gerade in der Zigarettenpause ^^ Vielleicht hilft dir das.

---

<div class="post-metadata">

### Author: ![premium-dog](https://avatars.discourse-cdn.com/v4/letter/p/779978/32.png) [@premium-dog](https://forum.shopware.com/u/premium-dog)
#### Post date: [23. Juli 2024 um 14:44 UTC](https://forum.shopware.com/t/check24-feed-csv/104619/3 "2024-07-23T14:44:11Z")

</div>

Hi Danke erstmal für deine Hilfe, damit kann ich die options schon mal auslesen:  
{%- for option in product.options -%}  
{%- if option.group.translated.name == „Farbe“ or option.group.translated.name == „Größe“ -%}  
„{{ option.translated.name }}“  
{%- endif -%}  
{%- endfor -%},{#- -#}

Wie bekomme ich es jetzt aber hin, dass ich zunächst den Artikelnamen bekomme und dahinter Farbe und Größe, falls vorhanden?

Am Ende soll es so aussehen: Artikel123 gelb 80x80 oder halt, wenn eine Option nicht vorhanden Artikel123 gelb oder Artikel123 80x80
