Skip to content

Instantly share code, notes, and snippets.

@Draykee
Last active March 10, 2020 14:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Draykee/83f702fa3dee11f1adac19c2630afc6d to your computer and use it in GitHub Desktop.
Save Draykee/83f702fa3dee11f1adac19c2630afc6d to your computer and use it in GitHub Desktop.
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 }}">
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment