On FullCalendar, in the month view, is there a way to hide an event\'s start time?
In case you completely want to remove the Start time, you can use the below code
$('#calendar-canvas').fullCalendar({
header: {
left: 'today prev,next title',
right: 'agendaDay,agendaWeek,month'
},
firstDay: 1,
eventRender: function(event, element) {
$(element).find(".fc-event-time").remove();
}
});