Change start time in daily view

Posted · Add Comment

Scheduler Forums BirchPress Scheduler Change start time in daily view

This topic contains 1 reply, has 2 voices, and was last updated by  Luke 7 years, 11 months ago.

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #22208

    Adrien G
    Participant

    Hello,
    How do i change the start of the day time in daily view from default 9 am to 7am.
    Thanks

    #22265

    Luke
    Keymaster

    Please add the following code in Custom Code > PHP

    
    <?php
     
    add_filter('birchpress_util_get_fullcalendar_i18n_params', 'birchpress_cc_util_get_fullcalendar_i18n_params', 20);
     
    function birchpress_cc_util_get_fullcalendar_i18n_params($params) {
     $params['minTime'] = '7:00am';
     $params['maxTime'] = '6:00pm';
     return $params;
    }
     
    ?>
    
Viewing 2 posts - 1 through 2 (of 2 total)

The forum ‘BirchPress Scheduler’ is closed to new topics and replies.

Comments are closed.