• Hi,

    In EventGlide (free version), past events are displayed in ascending chronological order, i.e. from the most far away in time on the left to the most recent one on the right.

    Please would it be possible to reverse the order and make it descending to have the most recent event always appearing as the first item on the left?

    Thanks in advance.

    Best,
    Daniele

Viewing 1 replies (of 1 total)
  • Plugin Author mywptrek

    (@mywptrek)

    Hi Daniele,

    Currently, there isn’t a direct option in EventGlide to change the order of past events. However, if you’re comfortable editing PHP, you can modify the order by adding this code inside the plugin file:

    ?? /includes/class-tecslider-function.php

    After line 188, right after:

    $events = tribe_get_events( $args );

    Add:

    if ( 'past' === $pastpresent ) {
    $events = array_reverse( $events );
    }

    This will reverse the order, making the most recent past event appear first.

    Best,
    mywptrek

Viewing 1 replies (of 1 total)
  • You must be logged in to reply to this topic.