Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter Daniele

    (@dabesa)

    I found this in the forum:
    {{ event.popup_timespan }}

    It’s a step forward, however the format includes the date:
    Feb 18 @ 18:30 – 19:30

    How can I exclude that and keep only the time?

    Thanks

    I had same problem and here is how I fixed it:
    I created my own theme, and in oneday.twig file replaced

    <span class="ai1ec-event-time">
    	{{ event.short_start_time }}
    </span>

    with this one

    <span class="ai1ec-event-time">
        {% set mod_date = event.popup_timespan | split('@') %}
        {{ mod_date[1]}}
    </span>
Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘End Time in Month View’ is closed to new replies.