How to prevent fullcalendar to show the start-hour in the event headline

fullcalendar

in the monthview fullcalendar has the nice feature to show the start time in the top line of non-allDay events. This might be useful if you don't want to provide further details in the event title.

I want to show several details in the month view, like start and end time (15.00 – 18-00), location, etc.

This leads to the fact that fullcalendar shows my events like this: "15 15.00 – 18.00".

Is there any way to prevent fullcalendar from showing the start time OR is there any way to get fullcalendar to show the full timespan (15.00 – 18.00)?

Thanks.
Alex

Best Answer

Try this, it works for me:

$('#calendar').fullCalendar({
     displayEventTime : false
});

That should prevent fullcalendar to show the start-hour in the event headline.

Related Topic