I am trying to display both expired and future entries on a sports team page so that users can see scores of past contests in addition to upcoming contests. Right now, the current setup is only showing expired contests. Changing to dynamic=“off” has had no effect.
{exp:weblog:entries weblog="upcoming" dynamic="off" related_categories_mode="on" show_future_entries="yes" show_expired="yes" sort="asc"}
{if upcoming-event}
{upcoming-event}
<tr>
<td>{entry_date format='%D'}</td>
<td>{entry_date format='%m/%j'}</td>
<td>{event-opponent}</td>
<td>{event-location}</td>
<td>{event-time}</td>
<td>{event-results}</td>
</tr>
{/upcoming-event}
{if no_results}
<tr class="no-sched">
<td class="empty" rowspan="3" colspan="5">There are no scheduled events.</td>
</tr>
{/if}
{/exp:weblog:entries}Thanks in advance for the help.