Hey,
I'm setting up a very simple agenda and I can't get any result for future posts.
I have two posts: one published in 1999 and another set as published for 2050.
The 1999 displays correctly on the "PAST" but I don't get any results to display the 2050 in "FUTURE". Any idea what's missing?
Code:
Thanks
I'm setting up a very simple agenda and I can't get any result for future posts.
I have two posts: one published in 1999 and another set as published for 2050.
The 1999 displays correctly on the "PAST" but I don't get any results to display the 2050 in "FUTURE". Any idea what's missing?
Code:
- Code: Select all
<cms:set cur_date="<cms:date format='Y-m-d' />" />
<h1>FUTURE</h1>
<cms:pages show_future_entries='1'>
<cms:if k_page_date gt 'cur_date' >
<div class="row agenda-list">
<div><cms:show k_page_title /> This is a post from 2050</div>
</div>
</cms:if>
</cms:pages>
<h1>PAST</h1>
<cms:pages show_future_entries='1'>
<cms:if k_page_date lt 'cur_date' >
<div class="row agenda-list">
<div><cms:show k_page_title /> This is a post from 1999</div>
</div>
</cms:if>
</cms:pages>
Thanks
