So I am trying to get two things to happen:
- the end times to not display on my long events
- the dots/icons to go away on short events so there’s more room for text

I have icons off and end times off within both the native calendar module AND CX3 module. I don’t know what to do now!
{
module: "calendar",
header: "Family Calendar",
hiddenOnStartup: "true",
position: "top_left",
config: {
broadcastPastEvents: true,
displaySymbol: false,
showEnd: false,
fetchInterval: 300000,
calendars: [
{
url: "https://.ics",
name: "family_cal",
color: "purple"
},
{
url: "https://.ics",
name: "alecwork_cal",
color: "gray"
},
{
url: "https://.ics",
name: "alec_cal",
color: "blue"
},
{
url: "https://.ics",
name: "days_off",
color: "black"
}
]
}
},
{
module: "MMM-CalendarExt3",
position: "bottom_bar",
config: {
mode: "week",
useSymbol: false,
showMore: true,
refreshInterval: "305000",
weekIndex: "0",
instanceId: "basicCalendar",
fontSize: "22px",
maxEventLines: 5,
firstDayOfWeek: 7,
calendarSet: ['family_cal', 'alecwork_cal', 'alec_cal', 'days_off'],
}
},