Blake Price
Blake Price

Reputation: 83

How to show multiple events per day on month view?

Right now, when I add more than 1 event to the calendar, it shows +2. I want to show up to 4 events per day in the month view and then after the 4th event show the +2, +3, etc. If that makes sense. Sorry very new to coding. I am using FullCalendar.io

Thank you so much!

enter image description here

Upvotes: 2

Views: 548

Answers (1)

Mike Irving
Mike Irving

Reputation: 1628

It looks like you have dayMaxEventRows: true set (v5)

or it is set to a specific integer, i.e. dayMaxEventRows : 1

Either remove it or set it to false

dayMaxEventRows: false

on previous versions the setting was named eventLimit

Upvotes: 2

Related Questions