Removing a certain number of hours every day from the week view

Home Forums Calendar Products Events Calendar PRO Removing a certain number of hours every day from the week view

Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #1017610
    Angelo
    Participant

    We don’t offer any courses from 9PM to 7AM every day, is there a way to remove those time-slots from the calendar’s week view to remove unnecessary scrolling?

    Thanks in advance!

    #1017752
    Alan
    Participant

    Hi Angelo,

    I just found the answer to this one – hope it helps!

    You can add this code to the header of your page and it will limit the hours shown in week view to 9am – 7pm

    ===
    <?php
    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 < 9 || $hour > 19 ) {
    unset( $hours[ $hour ] );
    }

    $hour ++;
    }

    return $hours;
    }
    ?>

    ====

    If you want to modify the hours, just change the “if ( $hour < 9 || $hour > 19 ) {” line to be whatever time you want (in 24 hour format so 7pm here is “19”)

    Hope that makes sense…

    #1017830
    Brian
    Member

    Hi Angelo,

    That coding Alan provided is the method to limit the hours.

    Thanks Alan for providing it!

    Here is a link to the coding as well:

    https://gist.github.com/anonymous/615ed066f14e5b3f67e5#file-week-view-example-php

    Add it to your child theme’s functions.php.

    Let me know if you have any follow up questions.

    Thanks

    #1018007
    Angelo
    Participant

    that worked perfectly, thanks a lot for your helping me so fast! 🙂

    #1018019
    Brian
    Member

    Great glad it helps and thanks again Alan!

    I am going to close this ticket, but if you need anything else related to this topic or another please post a new topic on the forum and we can help you out.

    Thanks

Viewing 5 posts - 1 through 5 (of 5 total)
  • The topic ‘Removing a certain number of hours every day from the week view’ is closed to new replies.