Can someone help me in sorting a channel listing by Related entry title please?
I have a channel 'teams' which has a field team_region which depends on another channel 'regions'.
My code is as follows:
{exp:channel:entries channel="teams" orderby="" sort="asc" limit="10"}
<tr>
<td>{title}</td>
<td>{team_address}</td>
<td>{related_entries id="team_region"}{title}{/related_entries}</td>
</tr>
{/exp:channel:entries}
I want to Sort the result by 'team_region >> title'. Is it possible to achieve this?
Thank You!