Remove 'Show X more' from day

In event calendar, when you are showing a limited number of events, for example 1, an option to ‘show 4 more’ will pop up on the calendar. Is there an option to disable this? I want to only show one event on a day that has multiple events, and not show the user this option to see more.

When trying to hide it through css classes, I found myself accidentally affecting multiple elements which I did not intend to.

Hi @jack.mullinkosson

To hide it, you can use the CSS class .mbsc-calendar-text-more

.mbsc-calendar-text-more {
    display: none;
}