Reputation: 83
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!
Upvotes: 2
Views: 548
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