0 Parent Cell Merge Field 2 Jeremy Turgeon posted 9 Years Ago I'm trying to build a check-in label that shows the child's parent cell phone number. Is this possible? I couldn't find it on any of the merge fields.
Jeremy Turgeon 9 years ago Hey Arran. I believe the Lava code necessary to pull this information simply isn't in Rock yet. Hopefully 4.0 will include it.
Arran France 9 years ago I'll add it to my to do list and take a look at it if I get a chance this week.
Arran France 9 years ago There's now a Lava filter in 4.0 that lets you access a person's parents, so you can leverage that using a little more lava to get the desired result.
Andrew Metz 6 years ago We're you able to do this? I know there's the Parent filter now in Lava. And I wrote some Lava that works elsewhere but not in a label merge field. Do Person Filters not work in Label merge fields?{% assign parents = Person | Parents %}{% for person in parents %}{{ person.FullName }} {% for PhoneNumber in person.PhoneNumbers %} {% if PhoneNumber.IsMessagingEnabled == 'true' %} {{ PhoneNumber.NumberFormatted }} {% endif %}{% endfor %}{% endfor %}