Hide start time in FullCalendar

后端 未结 13 1796
灰色年华
灰色年华 2021-02-06 21:32

On FullCalendar, in the month view, is there a way to hide an event\'s start time?

13条回答
  •  不要未来只要你来
    2021-02-06 22:18

    .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.

提交回复
热议问题