Guides
Templating Examples
Super Table field
Field Settings 
Template code
{% for row in entry.superTablePlainText %}
{{ row.plainText }}
{% endfor %}Static Super Table field
Field Settings 
Template code
{{ entry.superTableRichText.richText }}Matrix in Super Table field
Field Settings 

Template code
{% for row in entry.superTableMatrix %}
{% for block in row.matrix %}
{% if block.type == 'block1' %}
{{ block.plainText }}
{% endif %}
{% endfor %}
{% endfor %}
Last updated: May 1, 2026, 1:50:28 PM