Hi Folks
Is there a way to nest multiple related_entries in a reverse_related_entries tag?
Like this:
{exp:channel entries .......}
.......
<table class="kurse_listing" width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<th scope="col">Nr.</th>
<th scope="col">Kurs</th>
<th scope="col">Datum</th>
<th scope="col">Zeit</th>
<th scope="col">Ort</th>
<th scope="col"> </th>
</tr>
{reverse_related_entries
channel="kursdaten"
orderby="kursdaten_datum_von"
sort="asc"
status="not closed"
start_on="{current_time}"
}
<tr>
<td>{entry_id}</td>
<td>{title}</td>
<td>{kursdaten_datum_von format="%d.%m.%Y"}</td>
<td>{kursdaten_datum_von format="%G.%i"} - {kursdaten_datum_bis format="%G.%i Uhr"}</td>
<td>{related_entries id="kursdaten_ort"}{location_ort}{/related_entries}</td>
<td>
<a href="http://{comment_entry_id_auto_path}"><button class="button small blue right_align">Details</button></a>
{if logged_in_member_id == author_id OR member_group == '1' OR member_group == '8'}
<a href="http://{entry_id_path=kurse/admin}"><button class="button small green right_align">Admin</button></a>
{/if}
</td>
</tr>
{/reverse_related_entries}
</table>
........
{/exp:channel:entries}I have seminar-dates that are grabbed by {reverse_relation_entries} and get displayed in a table-list. between the {reverse_related_entries} tag i need to get other data from a third channel with the {related_entries} tag. in this case it is the location of the seminar. with this code i don’t get a result in the tag {location_ort}. did anyone has a idea how i can solve this?
many thanks in advance for a idea 😊
omar