From the
Hide start time in FullCalendar
I gone through the html of both month,week and Day view.In case of month .fc-time is used in span and in case of week,day view .fc-time is used in div.
I'm just hiding those as per my requirement.
In case of month Html :-
<div class="fc-content">
<span class="fc-time">11:30 - 12:00</span>
<span class="fc-title">Officer Meeting</span>
</div>
In case of week,Day Html:-
<div class="fc-content">
<div class="fc-time" data-start="11:30" data-full="11:30 - 12:00">
</div>
<div class="fc-title">Officer Meeting</div></div>
Finally here is my solution to hide the .fc-time in week and day but in month.
.fc-content .fc-time {
display: none !important;
}
.fc-content span.fc-time {
display: inline-block !important;
}