@sdetweil what impact would it have if I changed the code? for updates etc?
Read the statement by Michael Teeuw here.
Posts
-
RE: Hiding degree Fahrenheit
-
RE: MMM-Flights Not Working
@KI6UVE
Your config.js should be as follows{ module: “MMM-Flights”, position: “middle_center”, config: { laMin: 33.183537, laMax: 32.849596, loMin: -117.204895, loMax: -116.790161, } },Note the } without the comma closes off the config part. (With the comma, closes the module)
-
Hiding degree Fahrenheit
In both the MMM-Weather-Now and MMM-3Day-Forecast, how would I not show the “(43 o F)”? My config.js is metric, but looking at the code it appears whichever you select the other shows in brackets.

-
RE: MMM-CalendarExt3
@mumblebaj so that now means I can see the events again, but still not coloured how I want.
-
RE: MMM-CalendarExt3
@MMRIZE have tried that, still doesn’t show anything.
eventTransformer: function(event) {
if (event.title.search(“Ben”) > -1) {
event.className = “Ben”;
return event
}
} -
RE: MMM-CalendarExt3
@fedale @MMRIZE @chadjohn2 I am also trying (unsuccessfully) to have the Calendar event change color depending on which name is in the title.
With the original magicmirror calendar, I’ve used
customEvents: [ {keyword: “Ben”, color: “Brown”} ], which shows the event title and associated symbol in Brown.

In EXT3, using eventTransformer, only the symbol shows in color
I’ve tried to use
eventTransformer: function(event) {
if (event.title.search(“Ben”) > -1) {
event.className = “Ben”;
}
}
with customer.css
.CX3 .Ben {
color: brown;
}However, this then shows a blank calendar

Have any of you been successful?
Where am I going wrong?Thanks
-
RE: MMM-CalendarExt3
Is there an option to hide the week numbers? I’ve managed to remove the ‘cw’ using custom.css (albeit a bit untidy)
-
RE: MMM-MonthlyCalendar, config and .css
@sdetweil Ok, so will using css (which at present, seems waaaaay beyond me, so much so that I’m considering giving up) mean that each time I add an event that is under “steve” it will be green? Even watching introduction to css youtube videos is turning out to be unproductive.
-
MMM-MonthlyCalendar, config and .css
Hi all,
Do all modules conform to the same structure?
The reason I ask… Currently using the default calendar, and ext3, it displays the event, along with a symbol and the text in a color associated with a persons name. I’ve recently found that mmm-monthlycalendar suits the layout of my magicmirror better, however the color isn’t copying across.
I’ve tried eventTransformer: (ev) => in the config for monthlycalendar, along with the default calendars, I’ve tried to get my head around css but can’t figure it out.
-
RE: Calendar and Icons
@MMRIZE If I change / add fas fa-fw fa-symbol name, that appears to have resolved the issue.
