Hello!
I am having a strange issue where all of the modules are loading onto the first page and not rotating through pages while using the MMM-Pages module. I’ve worked through the suggested uninstall/reinstalling the module process outlined in the issue brought up here, but it hasn’t resolved it.
Magic Mirror version: 2.33.0
The pages config is below. Thanks for the help!
module: "MMM-pages", // flip between pages - goal was to set full page calendar on one page, rest on other
config: {
timings: {
default: 10000, // rotate every 10 seconds
0: 20000 // page 0 rotates every 20 seconds
},
animationTime: 2000,
modules: [
[ // page 0
'weather',
'alert',
'clock'
],
[
'MMM-CalendarExt3'
], // page 1
],
fixed: [
['MMM-page-indicator'], // what to show on every page
],
hiddenPages:{ // modules to not show, or to hide in specific pages
"hidden": [
'calendar',
'updatenotification'
], //calendar module only needed to feed into MMM-CalendarExt3 and associated modules, but setting "disable = true" breaks this connection
}
}