the liquid code like this:
{% assign showtext = "test" %}
{% assign entityObjs = entities['entity name'] %}
{% if entityObjs %}
<p>{{ showtext | prepend:'123' }}</p>
{% for entityObj in entityObjs %}
<p>{{ showtext }}</p>
{% endfor %}
{% endif %}
Portal info only show:
123test
in this code, i can get entityObjs, but why i can not forloop the entity item?
*This post is locked for comments