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 9 years, 8 months ago.

Viewing 1 post (of 1 total)
  • Author
    Posts
  • #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 1 post (of 1 total)

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

Comments are closed.