Skip to content

Instantly share code, notes, and snippets.

View Draykee's full-sized avatar

Drayke Draykee

View GitHub Profile
@Draykee
Draykee / searchMedia.html.twig
Last active March 10, 2020 14:29
Shopware 6 TWIG snippet to get media entity from media id in a custom_field
{% set mediaId = element.customFields["custom_media"] %}
{% set searchResult = searchMedia([mediaId], context.context) %}
{% set media = searchResult.get(mediaId) %}
<img src="{{ media.url }}">