On FullCalendar, in the month view, is there a way to hide an event\'s start time?
.fc-time-grid-event.fc-short .fc-time,.fc-time-grid-event .fc-time{
display: none !important;
}
Above code will correct it in all views.
code below has a flow that shows time in large view of event
.fc-time-grid-event.fc-short .fc-time{
display: none !important;
}
please use this code in css to hide the time only from event.
using just
.fc-time{
display: none !important;
}
will also hide the time at left grid.