I am currently migrating tt_news to news. The old news system also has news-entries shown as events. Is it somehow possible to hide entries that are past, without having to archive those? Or else to show only entries within the next x days?
This was possible with tt_news typoscript:
extensions.ttnews_selectconf {
andWhere (
tt_news.datetime < (UNIX_TIMESTAMP() +604800)
AND tt_news.datetime > (UNIX_TIMESTAMP()-86400)
)
}
I could not find anything in the news docs.