frankyonnetti
8/15/2016 - 12:24 AM

Both options work.

Drupal 8 - if field is empty #drupal #d8

{% if content.field_NAME['#items'] is not empty %}

  Field has stuff in it...

{% endif %}



{% if content.field_NAME|render %}

  Field has stuff in it...

{% endif %}