No starting and ending time

Hi,

Is it possible to have no starting and ending time in an event?
I only want the name of the event be visible in the scheduler.

Thanks you in advance.

You can alter event_header and event_bar_date templates

scheduler.event_bar_date = scheduler.event_header = function(){ return  ""; }

Hi Stanislav,

I changed the templates with the code but nothing changes in the scheduler.
Still the time is visible inthe event.
See the attached file with the settings.

In case of WP|Joomla plugin, leave first and last templates as is ( default value ) , for event_header template set the next text

return "";

Yes I use the WP plugin.
I kept the first and last template settings as you mentioned and changed the event_header.
Still no effect on the scheduler output.
Can you check the settings again?

Thanks!

Same settings produce the next view locally, as you can see - the date part of event was removed.

Yes that works fine … but not for the agenda and month view.

There is no direct settings in admin part for those elements, it can be adjusted only by modifications in the source files.

Can you give me a hint which file(s) I have to modify?

event-calendar-scheduler\codebase\dhtmlxSchedulerConfigurator.php

locate

$scheduler .= " scheduler.init(\"scheduler_here\",null,\"".$defaultmode."\");
replace with

$scheduler .= " scheduler.templates.event_bar_date = function(){ return \"\"; }; scheduler.init(\"scheduler_here\",null,\"".$defaultmode."\");