Hi, I have a weblog for calendar events. I show a summary of future events in a sidebar on my homepage (title and date of each event) and clicking on the title leads to a detail page. Simple enough and works fine.
What I also want to do on the detail page is have the same summary of future events in a sidebar so that users can click on other events without returning to the index page. However, even though I specify the weblog and number of entries in a separate tag pair than the detail entry, the weblog is still restricted to only the current event (i.e. the parameter in the event weblog entry URL). This doesn’t seem unreasonable but is there any way around it?
To try be clear, what I want is one main weblog entry in one EE tag pair and all future weblog entries, from the same weblog, in another EE tag pair on the same page.
Here is the [abbreviated] code on the detail page:
<!-- In sidebar Div ->
{exp:weblog:entries weblog="{my_calendar}" show_future_entries="yes" orderby="date" sort="asc" limit="10"}
<a href="http://{title_permalink=">{title}</a>
{/exp:weblog:entries}
<!-- In main entry Div ->
{exp:weblog:entries limit="1" show_future_entries="yes" disable="member_data|trackbacks"}
{title}
{event_description}
{/exp:weblog:entries}