MagicMirror Forum
    • Recent
    • Tags
    • Unsolved
    • Solved
    • MagicMirror² Repository
    • Documentation
    • 3rd-Party-Modules
    • Donate
    • Discord
    • Register
    • Login
    A New Chapter for MagicMirror: The Community Takes the Lead
    Read the statement by Michael Teeuw here.

    Mmm-Wunderlist can't show individual lists

    Scheduled Pinned Locked Moved Solved Troubleshooting
    6 Posts 2 Posters 1.7k Views 2 Watching
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • C Offline
      cptkex
      last edited by

      Hi. Second question today.

      I am trying to set up Wunderlist and I have gotten it working, but I can’t solve this problem.

      I have two lists I want to display, a, shopping list and a to do list. I add them both to the array but the module shows them both in the same list. So instead of two lists with entries, I get only one with the entries from both lists in the array. I will add the config. Js code from the pi in a minute, see below

      C 1 Reply Last reply Reply Quote 0
      • C Offline
        cptkex @cptkex
        last edited by

        @cptkex

        
        {
                        module: 'MMM-Wunderlist',
                        position: 'bottom_left',// This can be any of the regions. Best$
                        header: 'Matinköp', // This is optional
                        config: {// See 'Configuration options' for more information.
                                accessToken: '******************',
                                clientID: '****************',   //example clientID
                                lists: ['Att göra', 'Matinköp'],
                                interval: 3500,
                                ShowDeadline: true,
                                fade: true,
                                }
                        },
        
        :::
        C 1 Reply Last reply Reply Quote 0
        • C Offline
          cptkex @cptkex
          last edited by

          @cptkex @paviro perhaps you can offer some advice? i do love your module very much but there is now a big chance that i might go shopping for a kid to drive to the soccer game on saturday ;)

          1 Reply Last reply Reply Quote 0
          • joela85J Offline
            joela85
            last edited by

            Hi,

            One way around this might be to put two modules in your config, as shown below. That way you can have a separate header for each.
            Hope this works.

            {
                            module: 'MMM-Wunderlist',
                            position: 'bottom_left',// This can be any of the regions. Best$
                            header: 'Att göra', // This is optional
                            config: {// See 'Configuration options' for more information.
                                    accessToken: '******************',
                                    clientID: '****************',   //example clientID
                                    lists: ['Att göra'],
                                    interval: 3500,
                                    ShowDeadline: true,
                                    fade: true,
                                    }
                            },
            {
                            module: 'MMM-Wunderlist',
                            position: 'bottom_left',// This can be any of the regions. Best$
                            header: 'Matinköp', // This is optional
                            config: {// See 'Configuration options' for more information.
                                    accessToken: '******************',
                                    clientID: '****************',   //example clientID
                                    lists: ['Matinköp'],
                                    interval: 3500,
                                    ShowDeadline: true,
                                    fade: true,
                                    }
                            },
            
            C 2 Replies Last reply Reply Quote 0
            • C Offline
              cptkex @joela85
              last edited by

              @joela85 hi, thanks for replying!

              i had the same thought so i tried to copy paste the same information but MM told me there was an error in the config.js and did not boot when i tried that method. Since i am still a beginner at this i might have screwed up somewhere, so i am going to try to paste your code instead tonight and try it.

              1 Reply Last reply Reply Quote 0
              • C Offline
                cptkex @joela85
                last edited by

                @joela85 this worked like a charm, I must have screwed up the code. I only have to figure out how to place them to not grow upwards when I add items but have a fixed height. Thanks

                1 Reply Last reply Reply Quote 1
                • 1 / 1
                • First post
                  Last post
                Enjoying MagicMirror? Please consider a donation!
                MagicMirror created by Michael Teeuw.
                Forum managed by Sam, technical setup by Karsten.
                This forum is using NodeBB as its core | Contributors
                Contact | Privacy Policy