Remove early morning hours from week view

Home Forums Calendar Products Events Calendar PRO Remove early morning hours from week view

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #1358493
    Michael Barndt
    Participant

    The week view starts on the screen with the earliest event – for example, 10:00 am that Wednesday. However, when I scroll up within the week window, the early morning hours come into view. I do not want to show times before 7:00 am.

    I do I set a starting point for displaying the hours in the week view?

    #1359085

    Hi Michael,

    Thanks so much for reaching out!

    In order to limit the week view calendar hours, try adding something like this to your theme’s functions.php file.  You may have to edit the times to suit your needs.
    // Limit the Calendar hours to start at 7am
    function limit_calendar_hours($hours) {
    foreach ($hours as $hour => $formatted) {
    if (6 < $hour) {
    $limited_hours[$hour]=$formatted;
    }
    }
    return $limited_hours;
    }
    add_filter('tribe_events_week_get_hours', 'limit_calendar_hours');

    Let me know how it goes!

     

    Thanks,

    Jaime

    #1359134
    Michael Barndt
    Participant

    Once I changed the > and < to > and <
    respectively – it worked!

    #1359474

    Glad we could help, you are welcome back in our support forums any time!

    For now, I am going to close this thread.

    Have a great week!

Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘Remove early morning hours from week view’ is closed to new replies.