Hi,
We have in FC relation and relation reverse fields.
We can show some fields related to the relation by modifying the html bloc of the field.
So, if i take the example of the site here :
www.flexicontent.org/documentation/faq/7...-reverse-fields.html
we have autors and books.
So if we have for autors 3 fields : name, date of birth, photo
We can with a relation field show this informations in a book with something like :
Code:
{{autorname}}<br/>{{dateofbirth}}<br/>{{autophoto}}
And in the template, have something like :
Code:
echo $this->fields['bookname']->display;
echo '<br/>';
echo $this->fields['autor_reverse_relation']->display;
Yes, but if i want to have :
Name of the Autor
Name of the book
Photo of the autor
It is not possible as fields are "mixed" for my view.
The thing could be then the possibility to call a related field with something like : myrelationfield:myspecificfieldtoshow
Then, we can build any view in category or item view
Thanks