Hello!
I am making an events list in a channel called “events”. I am displaying today and future events by using the following parameter:
start_on="{current_time format='%Y-%m-%d %H:%i'}"This is fine and good (so far) except for that I have to enter 11:59 PM to override the actual time that this was entered as the time for an entry once I choose a date in the date picker. (whew, hope that made sense!) For example: I entered in an event for 06/07/2012 on the previous day at 1:06 AM. Once it was 06/07/2012 at 1:07 AM that event was removed from my channel entries on the front end, which isn’t what I wanted to accomplish.
I’m wondering if there is a way to override the auto-populated time portion of that date when I enter a new entry so that it populates with 11:59 automatically? Or just uses only the full day, rather than a down-to-the minute time?
I suppose I could change my system to employ the use of an expiration date, but I’m trying to make the process as simple as possible for a client to add more events. Can I just remove the
%H:%iportion and have the start_on parameter function like I’m desiring? So something like:
start_on="{current_time format='%Y-%m-%d'}"Thanks for any help with this! Perhaps I just need to envision this differently?