Show active
I have low events setup to only show active entries.
But say for example if I set an entry to finish at 8pm it still displays after that time. I've checked my config settings and they are set to the right timezone and EE knows what time it should be. I've verified this by creating a new entry in a different channel and seeing what time stamp it gives it.
Here is my code:
{exp:low_events:entries channel="broadcasts" limit="2" show_active="yes" show_upcoming="no"}
{if no_results}There are currently no live broadcasts, please check our schedule below for upcoming events.{/if}
{broadcast_subtitle}, {broadcast_date:start_date format="%j %F %Y"}
{title}
{broadcast_embed_code}
{/exp:low_events:entries}
Any thoughts?
Replies
Low 15 Apr 2014 19:54
This is intended behaviour. By default, LE's Entries tag will display events starting today onwards. That also means events that ended today. You can turn off passed/active/upcoming events by setting the appropriate params, so in your case:
show_passed="no" show_upcoming="no"
Note that you'd never need to use show_passed/active/upcoming="yes", as that's the default.
Niall Thompson 15 Apr 2014 20:02
thanks. that makes perfect sense.
i really appreciate you getting back to me so soon.
Niall