Can I set the time for the Week Calendar to start at 6 or 7am instead of 1 am?

Home Forums Calendar Products Events Calendar PRO Can I set the time for the Week Calendar to start at 6 or 7am instead of 1 am?

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #1133692
    Raquel
    Participant

    In the Week Calendar view, the calendar starts at 1am. Is there a way in Pro to set the start time to be 6am or 7am so we don’t have to always scroll down a full screen to see the morning?

    #1133724
    Andras
    Keymaster

    Hello Debra,

    Thanks for reaching out!

    It is possible to limit the hours shown in the weekly view. Just paste this snippet in your theme’s functions.php file:

    add_filter( 'tribe_events_week_get_hours', 'filter_week_hours' );

    function filter_week_hours( $hours ) {
    $hour = 0;

    foreach ( $hours as $key => $formatted_hour ) {
    if ( $hour < 7 || $hour > 18 ) {
    unset( $hours[ $hour ] );
    }

    $hour ++;
    }

    return $hours;
    }

    You can customize the range shown as needed, if you adjust the numbers in this line:
    if ( $hour < 7 || $hour > 18 ) {

    Let me know if this helps!

    Cheers,
    Andras

    #1139757
    Support Droid
    Keymaster

    This topic has not been active for quite some time and will now be closed.

    If you still need assistance please simply open a new topic (linking to this one if necessary)
    and one of the team will be only too happy to help.

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘Can I set the time for the Week Calendar to start at 6 or 7am instead of 1 am?’ is closed to new replies.