We have an Entity reference field on Basic Page content type that is set to Articles. The Articles content type has a field, field_category that is a taxonomy term.
What is the correct token to get the value of the field_category?
Basic Page:
field_articles-> entity reference toArticlecontent type.
Article page:
field_category-> taxonomy term field.
Goal:
- Return the
field_categorylabel from theArticlenode that is set on theBasic Page
Example:
Basic Page -> page1(nid=0)
field_articles= articlePage1(target_id = 1)
Article page -> ArticlePage1 (nid = 1)
field_category=Cloud(tid = 10)
Token should return Cloud for page1.
We tried the following but it didn't work.
[node:field_articles:entity:field_category]