• Resolved sjerrysss

    (@sjerrysss)


    I’m using Events View widget in Elementor, but events in each date are currently being listed in an unknown random order.

    There’s nowhere to sort the events by any order in admin or Elementor editor.

    Is there a way to display the events by alphabetical order?

    The page I need help with: [log in to see the link]

Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Support tristan083

    (@tristan083)

    Hi @sjerrysss ,

    To help us better understand your situation here. Could you please provide some illustrated screenshots or video recording for the view that you’re trying to sort the events in alphabetical order?

    Plugin Support Darian

    (@d0153)

    Hi there,

    It appears that there hasn’t been any recent activity on this thread, so we’ll consider it resolved. However, if you have any additional questions or concerns, feel free to start a new thread.

    Thread Starter sjerrysss

    (@sjerrysss)

    https://drive.google.com/file/d/1Wnjfwfkc6oSWqFDr0VESBZpsUrAU8DBR/view?usp=sharing

    sorry for my late reply.

    please check the above link to see the screenshot.

    Plugin Support Darian

    (@d0153)

    Hi @sjerrysss

    To sort the event by title on your month view, you can do a template customization at \the-events-calendar\src\views\v2\month\calendar-body\day\calendar-events.php?and order?$day_events?by the title. One of the things here is that featured and multi-day events will remain on top.

    usort( $day_events , function( $a, $b ) {
    return strcmp($a->post_title, $b->post_title);
    } );

    As always, please test it first on your staging site before applying to your live site.

    Let me know how it goes.

    Plugin Support Darian

    (@d0153)

    Hi there,

    It appears that we haven’t heard back from you in a while, so I’ll assume that the matter has been resolved. If you need any more help, feel free to start a new thread and we’ll be happy to assist you.

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