I am using liquid to cycle through all the items of a webapp and output the various fields. This works fine but for some reason I cannot output the description field.
The following code is a simplified version of what I am using:
{module_webapps id="26025" collection="tutors" filter="all" template=""}
{% for tutor in tutors.items %}
{{tutor}}
{{tutor.name}}
{{tutor.description}}
{{tutor.["external website"]}}
{% endfor -%}
The {{tutor}}
tag outputs an array of all the fields for the current web app item except the description, so I guess it is unsurprising that {{tutor.description}}
also does not work. Why is this?
When using the template layout (which I don't want to do) {tag_description}
and {{description}} work as expected.
Does anyone know how can I access the description field when using liquid in this way outside of a template layout?