I am trying to build a liquid template that will show the name of a custom lookup field (on web pages) for all of the child pages.
If I try to pull in the value for the current page, I can use something like this: {{ page.lookup_field.name }}, and I get the lookup value.
However, if I use a for loop and the children keyword, I'm not getting anything returned:
{% for child in page.children %}
{{ child.lookup_field.name }}
{% endfor %}
If I change to the field in the for loop to something like 'child.title' I get the expected values for the child pages.
Is this a limitation of Liquid or is there another way to get the lookup values of child pages?
We are using CRM 2015 on premise with Adxstudio 7.0.0.21.
Thanks!
*This post is locked for comments