Read the statement by Michael Teeuw here.
MMM-Carousel not displaying
-
@sdetweil said in MMM-Carousel not displaying:
position: ‘bottom_bar’
so that would be in the config.js file or the www-Carousel.js file?
-
@pastormingle ALL config options ALWAYS go in config.js
NEVER edit the module source file…
the design is options in config.js override any options defined in the module
any options not USED in config.js use the defaults provided by the modulebut position is a MM config option (outside the config:{} block for the module),
NOT a module config option (inside the config:{} block for module)see
https://docs.magicmirror.builders/modules/configuration.html#example -
{ module: 'MMM-Carousel', position: 'bottom_bar', config: { whatever config for this module } }
-
@sdetweil ```
So now is gets an Undefined displayed at the bottom of the display.. }, { module: 'MMM-Carousel', position: 'bottom_bar', config: { transitionInterval: 10000, ignoreModules: [], mode: 'global' } }
![45d7e7ab-536a-4ba1-b849-c0ba73a9344f-image.png](/assets/uploads/files/1638977941062-45d7e7ab-536a-4ba1-b849-c0ba73a9344f-image.png)
-
@pastormingle getting the following error in the dev windows now.
TypeError: Failed to execute ‘appendChild’ on ‘Node’: parameter 1 is not of type ‘Node’.
at updateModuleContent (main.js:215)
at main.js:142
at new Promise ()
at updateDomWithContent (main.js:140)
at main.js:122 -
@pastormingle this is my config
{ module: 'MMM-Carousel', position: "bottom_bar", config: { transitionInterval: 10000, ignoreModules: ['clock', 'alert'], mode: 'slides', slides: [ ['calendar', 'compliments', 'weather'], ['newsfeed'], ] } }
but you wanted slides mode… why are u set to global?
-
I changed ‘slides’ to ‘global’ and it worked too
you are using this version
https://github.com/shbatm/MMM-Carousel.git
in the MMM-Carousel folder do
git remote -v
-
@sdetweil said in MMM-Carousel not displaying:
git remote -v
same. -
@pastormingle So, what @sdetweil meant was that in the terminal window in the ~/MagicMirror/modules/MMM-Carousel/ folder you should run the command
git remote -v
and post the output of that.For me it is:
origin https://github.com/barnabycolby/MMM-Carousel (fetch) origin https://github.com/barnabycolby/MMM-Carousel (push)
-
@mumblebaj hm… that one also works… (but works without position, but doesn’t have a getDom function)
the sabatm version has page indicator buttons u can push too…