Hi, Im a EE newbie….
I want to have a Master / Detail page with EE, when a user click on an Album it should show the album title and its paginated photos
So I built two channels: Albums and Photos, Photos have a relationship field to Albums.
My problem comes because I dont know how to filter photos by albums, I see that search:field can’t help here…So I decided to use reverse_related_entries (is this the only way?)
This is what I’ve done so far…
{exp:channel:entries channel="albums" paginate="top"}
<h2><a href="http://{path=albums/{url_title}}">{title}</a></h2>
<p> {reverse_related_entries sort="desc" orderby="date" }<br />
{if no_reverse_related_entries}<br />
<div>The Album is Empty</div><br />
{/if}<br />
<div>{title}</div><br />
...<br />
{/reverse_related_entries}</p>
<p>{/exp:channel:entries}The problem I have is reverse_related_entries don’t support pagination and other stuff like that, and for sure I want those photos paginated…
Thanks in advance