Hide time on Full Calendar

How do I remove the “12am” when using the Full Calendar plugin?

Setting > Languages

Adjust as needed

I’ve already tried this code ({“agenda”:"{}","":""}) but it doesn’t change anything.

I tried that too but unfortunately it doesn’t work


Have a database entry until December 23rd but he only makes it until December 22nd.

Screenshot_3
Unfortunately I can’t select anything here

@iws-kleer I am struggling with this as well, it seems like the original solution ({“agenda”:"{}","":""}) has definitely stopped working. Have you figured out a way to fix it?

Found another solution, using css:
Insert an HTML element somewhere on the page. Make sure it is hidden and collapsable. In it, put:

<style>
.fc-h-event .fc-event-time {
    display: none;
}
<style>

That should be it.

Note: my calendar only allows a month view, so I haven’t checked if this changes the behaviour of the other views.

3 Likes