In WordPress, Set Default Date in Year View

Hi there!

I am creating a calendar for 2015 using the year view. How can I set the calendar to start from 1st January 2015? Right now, the default date is current date so the 2013 calendar is shown.

Believe it or not, I have been battling this issue for several hours now without any solution, so any help will be greatly appreciated.

I’m using version 3.0 of the WordPress plugin.

Thanks!

Actually it is a rather complex thing to do
There is no any separate setting for it, you can locate dhtmlxSchedulerConfigurator.php and it that file replace

scheduler.init(\"scheduler_here\",null,default_mode);

with

scheduler.init(\"scheduler_here\",new Date(2015,0,1),default_mode);