Hi,
I have a parent with two children, like this (or see the attachment).
Product (parent)
/ \
/ \
/ \
Artist (child) Exhibition (child)
The following code works. It gets me all Products that belong to a particular Exhibition.
{exp:channel:entries channel="exhibition"}
{parents field="product_exhibition"}
{parents:product_image:thumb}
{parents:title}
{/parents}
{/exp:channel:entries}But I also want to get the Artist title for each Product, like this:
{exp:channel:entries channel="exhibition"}
{parents field="product_exhibition"}
{parents:product_image:thumb}
PRODUCT_ARTIST:TITLE
{parents:title}
{/parents}
{/exp:channel:entries}I’m not sure if EE allows for this - anybody have any ideas?
Thanks for looking.