Joomla Configuration

Hi,



Just installed on Joomla test site, how do I please configure the hour scale to show a working day of between 08:30 to 17:00? And how do I hide the weekends so it only shows the weekdays?





Thanks

There is no options for it in the admin panel , but you can use all settings of scheduler directly in JS code

components\com_scheduler\models\scheduler.php

locate the next line
scheduler.config.xml_date="%Y-%m-%d %H:%i";
after it you can add any custom configuration options
scheduler.config.xml_date="%Y-%m-%d %H:%i";
scheduler.config.first_hour = 8;
scheduler.config.last_hour = 17;