Hide clock in FullCalendar
2 answers
You need to use the "basicDay" view and set "allDayDefault" to true:
$(document).ready(function() {
$('#calendar').fullCalendar({
header: {
left: 'prev,today,next',
center: 'title',
right: 'month,basicWeek,basicDay'
},
allDayDefault: true,
})
});
In these configurations, the event will be set as all day by default. And the view "basicWeek" ans basicWeek only shows the day without hours.
Read more in the FullCalendar documentation: FullCalendar Documents .
+1
source to share