@MMRIZE That worked. Thanks for the help and finding my stupid mistake.
You’ve made a nice module here. Enjoy a few coffees on me, thanks.
@MMRIZE That worked. Thanks for the help and finding my stupid mistake.
You’ve made a nice module here. Enjoy a few coffees on me, thanks.
I updated my MagicMirror this week and have been struggling to figure out why my Google calendars weren’t loading. It was the parser for sure… Thank you!
I’ve had some similar issues with Google Calendar data and I’ve had to delete and recreate some events that are strange. Some birthdays (recurring yearly all-day events) seemed to be the most problematic, but I had a simple one-time event be off by an hour last week. Removing and recreating is what I had to do to get it fixed.
@MajorC
This is how I set mine up too. Works great!
@MMRIZE That worked. Thanks for the help and finding my stupid mistake.
You’ve made a nice module here. Enjoy a few coffees on me, thanks.
I’m confused how to implement the eventFilter. In the documentation it’s listed in the config properties but references a section that is with the CSS and DOM model. Should I just include it in my config.js?
Here’s what I’m trying and it’s not removing the events like I want:
{
module: "MMM-CalendarExt3Agenda",
position: "top_right",
config: {
instanceId: "familyCalendar",
calendarSet: ['Cal1', 'Cal2', 'Cal3', 'Cal4'],
useWeather: false,
showMiniMonthCalendar: false,
useSymbol: true,
waitFetch: 20000,
eventFilter: {
eventFilter: (ev) => {
if (ev.title.search('Your statement is ready') > -1) return false
return true
}
}
}
},
@omarr I’m making a similar one. I’ve got my pi and display working but just need a frame. Did you find one with a perfect mat?
@BKeyport Thanks for this! For some reason I didn’t see your reply last time I checked the forum. I appreciate the tips!
I’m setting up my MagicMirror dashboard and like the layout and functionality of MMM-CalendarWeek, but realize the incorrect days of events is going to be a deal breaker. It seems that the module is been abandoned with a lot of unanswered issues posted to the GitHub page.
I’m considering forking it and trying to fix the problems, but thought I’d ask first if anyone else found an alternative or maybe a fork of the module that works better. Fixing it will take me time as I’m new to NodeJS and MM modules.