I have this 3 channels :
Band (title )
City (title, city_postal_code )
Concert ( title, concert_band, concert_city, concert_date)
When you enter a new Concert entry , you have to select one Band(dropdown) , one city(dropdown) , and a date.
concert_band and concert_city are related fields logically .
So this code works
{exp:channel:entries channel="band" }
The band {title} plays:
{reverse_related_entries}
{concert_date} in {concert_city}
{/reverse_related_entries}
{/exp:channel:entries}But I need to get the city_postal_code so I tried related_entries inside reverse_related_entries
{exp:channel:entries channel="band" }
The band {title} plays:
{reverse_related_entries}
{concert_date} in {concert_city}
{related_entries id="concert_city"} {city_postal_code} {/related_entries}
{/reverse_related_entries}
{/exp:channel:entries}but Instead city_postal_code value its showing this tag {REL[concert_city]DwMB81u7REL}
any idea?
Thanks,
Alfonso.