Modify list to show events for next X number of days

Home Forums Calendar Products Events Calendar PRO Modify list to show events for next X number of days

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #1288479
    Pete
    Participant

    I’d need to show a list of events that are scheduled for the next X number of days. Events scheduled for the current day should display, even if the end time for the event has past. How can I do that?

    #1289056
    Jennifer
    Keymaster

    Hi Pete,

    Thanks for reaching out!

    The “Event List: Upcoming Events” widget shows upcoming events within your specified number of days, but it does not show events that have already ended for the current day. However, you can change that by adding this to your functions.php file:


    add_filter( 'tribe_events_list_widget_query_args', function( $args ) {
    $args['eventDisplay'] = 'custom';
    $args['posts_per_page'] = 0;
    $args['start_date'] = date( 'Y-m-d' ) . '00:01';
    $args['end_date'] = date( 'Y-m-d' ) . '23:59';
    return $args;
    } );

    Let me know if that works for you!

    #1299196
    Support Droid
    Keymaster

    Hey there! This thread has been pretty quiet for the last three weeks, so we’re going to go ahead and close it to avoid confusion with other topics. If you’re still looking for help with this, please do open a new thread, reference this one and we’d be more than happy to continue the conversation over there.

    Thanks so much!
    The Events Calendar Support Team

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘Modify list to show events for next X number of days’ is closed to new replies.