At first I think you are confused with so many files, but basically you only need to use javascript and css thumbnails to make them work.
Secondly, I had the same problem with the correct time display. This is what I did, this is a bit of a workaround, but it worked for me, sorry if it's dirty.
When you initialize the calendar, you must put an option for timeformat so that it displays minutes, even if the clock is rounded.
jQuery('#calendar').fullCalendar({ timeFormat: 'h:mm t' });
Then it only appeared “a” or “p” not “am” or “pm”, so I used some CSS magic to add “m” at the end, I created a rule:
.fc-time:after { content: "m"; }
now you can ruin the view of the week to add a rule
.fc-axis.fc-time:after { content: " "; }
And now, I hope you have it the way you want.
Hello
source share