Zusatzfeld

Ich habe ein Zusatzfeld “Media” angelegt.

Im Template habe ich ergänzt {{ page.product.customFields.custom_fotohandel_bilddatei }}

Im Frontend erhalte ich dann die Ausgabe bdef74ad919c4bc3a5d8cedcac599dc0

Wie kann das das Bild angezeigt werden?

Vielen Dank für Unterstützung.

 

Hallo,

das steht eigentlich sehr deutlich in den Shopware Dokumentationen, falls man sich mit diesen auch beschäftigt, siehe: https://docs.shopware.com/en/shopware-platform-dev-en/how-to/custom-fields-media-type#using-custom-fields-of-type-media .

Grüße

Sebastian

Danke. Ja. Aber trotzdem komme ich leider nicht weiter.

Hier mal mein Code in der entsprechenden Datei. Vielen Dank für Hilfe.

{% sw_extends ‚@Storefront/storefront/page/product-detail/index.html.twig‘ %}
{% block page_product_detail_tabs %}

 {{ page.product.translated.customFields.custom_fotohandel_bilddatei }}
                               {{ page.product.customFields.custom_fotohandel_werkstattueberholt }}
                               
 {% set sportsMediaId = page.product.translated.customFields.custom_fotohandel_bilddatei %}
 {% set mediaCollection = searchMedia([sportsMediaId], context.context) %}
 {% set sportsMedia = mediaCollection.get(sportsMediaId) %}
 {{ dump (sportsMedia) }}

 

  {% endblock %}