I have a channel for events with 3 categories. I want to use as few templates as possible to display the events and provide a link to view the details of the event.
When I am viewing category 6 details template I want to display a list of other events within the same category 6.
Here is the URL of my details page:
http://domain.com/index.php/Events/detail/C6/title-of-event
On my details page I am using the following for my list:
{exp:channel:entries channel="events" dynamic="no" limit="25" show_expired="no" show_future_entries="yes" category="{segment_2}"}
<div class="members_title"><a href="http://{url_title_path=Events/detail}">{title}</a></div>
{event_brief_one_liner}
{if no_results}Currently no News or Events to display{/if}
{/exp:channel:entries}The above is not showing any results even though there are other entries within the same category.
On another template
http://domain.com/index.php/Events/C6/
is displaying all the events in Category 6 just fine,