Read the statement by Michael Teeuw here.
Can't get mmm-calendarext3 - customEvents to display the changed events, or more than 9 days.
-
@cheminge said in Can't get mmm-calendarext3 - customEvents to display the changed events, or more than 9 days.:
customEvents: [{keyword: “1 - Unit”, symbol: “fire-extinguisher”, color: “red”}, {keyword: “2 - Unit”, symbol: “fire-extinguisher”, color: “green”}, {keyword: “3 - Unit”, symbol: “fire-extinguisher”, color: “blue”}],
those would only change the events in the calendar UI. not in Ext3…
and you are not showing the default calendar (no position setting) -
Yes, I am running the latest mmm-calendarext3, but I also ran the script as suggested. “Already up to date” comes up when I run the update for mmm-calendarext3.
The EXT3 does show the color and symbol, but not the CustomEvents. Is this because EXT3 doesn’t support that function?
I just did the broadcast clipping fix and I am still having the two problems.
I have other pages that show other calendarEXT3, and they seem to be working, I just left them out as they are not having these issues, so I made a simple config file with just this calendar, and it is still the same result.
-
@cheminge customevents in the default calendar is done at the UI , long after the events are broadcast
in Ext3 there it the eventtransformer () function to allow you to
manipulate the events before they appearif you look at this person’s Ext3 config here
https://forum.magicmirror.builders/post/122721
you will see an example of that function in the Ext3 config -
Thank you!!!
I now have the color and symbol working!!!
now, onto issue number 2. how do I get it to show more of the events?
-
@cheminge did you put on the fix as I asked before… this is not an EXT3 fix, its a base MM fix
-
Ok,
After some deep diving I realized I have
broadcastPastEvents: true, in the wrong location in my config file.I moved it down to be inside the “config” location and it now works!
Do I need to move the other items inside of the “config” location?
modules: [ {module: "calendar", fade: false, flipDateHeaderTitle: true, hideDuplicates: true, coloredText: true, coloredBackground: false, coloredSymbol: true, pastDaysCount: 90, wrapEvents: true, updateOnFetch: true, colored: true, config: { broadcastPastEvents: true, calendars: [ { name: "**CalendarName**", url: "https://**My Google Calendar Link**.ics", symbol: "person-military-to-person", className: "**ClassName**", beforeDays: 30, afterDays: 90, maximumEntries: 100, pastDaysCount: 40, color: "green", fetchInterval: 60000, //900000 is 15 minuets }, -
@cheminge yes
everything BEFORE config:{
belongs to Magicmirror, and the module will not see itONLY stuff inside config goes to the module
config:{ ..... here }see
https://docs.magicmirror.builders/modules/configuration.html#example -
@cheminge did you get it working?
-
Everything seems to be working, but I am having one issue.
I have repeating events, that are “All Day” events.
Then the week of the event I change the event on the google calendar to be for a specific time of day.
When I do this, I see both the repeating “All Day” and the Specific time events. (so double events on the same day) It also doesn’t read the new times that I have put into the google calendar.
I don’t even know where to start to look for a solution for this.
Attached is a screen shot of the calendar, and for example, on January 28, all 3 are duplicate entries.

-
@cheminge did you put on the fixes for calendar?
are you running MagicMirror version 2.30, many calendar fixesif you are, i want the event that you modified
before and after dumped from your ics datacurl -sL the-cal-url >somefile.txt
edit , find the event
BEGIN:VEVENT . . END:VEVENT -
Yes, I think I have 2.30 and many calendar fixes installed…
Here is they entry for one of the entries on the 1-28-25 (duplicate of the “Alyce” entry)
BEGIN:VEVENT
DTSTART;TZID=America/New_York:20250128T103000
DTEND;TZID=America/New_York:20250128T113000
DTSTAMP:20250129T181146Z
UID:m6rjo4c4r97p3jm4i84aiud6ld_R20250128@google.com
RECURRENCE-ID;TZID=America/New_York:19691231T190000
CREATED:20221212T202854Z
LAST-MODIFIED:20250124T145109Z
LOCATION:**Protected Data ** (removed for protection data)
SEQUENCE:3
STATUS:CONFIRMED
SUMMARY:**Alyce Entry ** (removed for protection data)
TRANSP:TRANSPARENT
END:VEVENTEGIN:VEVENT
DTSTART;VALUE=DATE:20250128
DTEND;VALUE=DATE:20250129
RRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TU
DTSTAMP:20250129T181146Z
UID:m6rjo4c4r97p3jm4i84aiud6ld_R20250128@google.com
CREATED:20221212T202854Z
LAST-MODIFIED:20250124T145109Z
LOCATION:**Protected Data ** (removed for protection data)
SEQUENCE:2
STATUS:CONFIRMED
SUMMARY:**Alyce Entry ** (removed for protection data)
TRANSP:TRANSPARENT
END:VEVENT -
@cheminge can you show me the output of
cd ~/MagicMirror git branch -
@cheminge are you in the ny timezone too?
-
@cheminge ok, the RRULE rule is that the extracted event MUST match the event its extracted from
you have a full day RRULE
DTSTART;VALUE=DATE:20250128 DTEND;VALUE=DATE:20250129 RRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TUand then extracted one instance
DTSTART;TZID=America/New_York:20250131T103000 DTEND;TZID=America/New_York:20250131T113000by RULE, this will be FORCED to a fullday event
as the source event is fulldaysimilarly if
the event is date/time
then the extracted MUST be date/timeAND its bi weekly, so the extracted event is ignored. as its not on a week boundary
(the RRULE cycle bi weekly and ONLY on TUESDAY)
RRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TUthe tie between the events is the UID field
UID:m6rjo4c4r97p3jm4i84aiud6ld_R20250128@google.com
the calendar tool should have changed the UID field
to make this a standalone event
but left it as part of the recurrence,
RECURRENCE-ID;TZID=America/New_York:
got to be one or the other… match the RRULE or be separate -
-
yes, I am in the New York time zone.
-
@cheminge did you see my analysis of the events you posted
-
Yes I see your analysis.
Are you saying that the calendar tool (google) is not separating the event out and making it a new UID?
I still don’t know how to get around that.
When I confirm, should I make a new event and then delete the repeating event for that day?
-
@cheminge
there are three scenariosday event repeats for 5 days, m-f
you drag one of those someplace out of sequence,
tuesday to saturday. it STILL MUST BE FULL DAY,
it STILL has same uid (part of event collection) AND a recurrence id (in case you move it back)5 day(full) event, not repeating
you drag tuesday to saturday
same UID (part of the event collection)
it can have a different time scale hours vs day, not repeating
if you modify it. and drag it back, its a new event in the middle of old range it lost its tuesday identity on drag out5 single full day events covering m-f, one per day
different uid each, anything is gameyours is every other week, recurring or a particular day of week
which of the events did you move?in each of the 1st two, if you delete the base event, all uid attached events go away too (event family is deleted)
second one the outside event is no longer tuesday modified
but it is still part of the family (uid)
Hello! It looks like you're interested in this conversation, but you don't have an account yet.
Getting fed up of having to scroll through the same posts each visit? When you register for an account, you'll always come back to exactly where you were before, and choose to be notified of new replies (either via email, or push notification). You'll also be able to save bookmarks and upvote posts to show your appreciation to other community members.
With your input, this post could be even better 💗
Register Login