MagicMirror Forum
    • Recent
    • Tags
    • Unsolved
    • Solved
    • MagicMirror² Repository
    • Documentation
    • 3rd-Party-Modules
    • Donate
    • Discord
    • Register
    • Login
    1. Home
    2. mh77
    A New Chapter for MagicMirror: The Community Takes the Lead
    Read the statement by Michael Teeuw here.
    M
    Offline
    • Profile
    • Following 0
    • Followers 0
    • Topics 1
    • Posts 2
    • Groups 0

    mh77

    @mh77

    0
    Reputation
    372
    Profile views
    2
    Posts
    0
    Followers
    0
    Following
    Joined
    Last Online

    mh77 Unfollow Follow

    Latest posts made by mh77

    • RE: Basic configuration issues with compliments & calendar modules

      Ah of course, that’s it. Thanks so much!

      I hadn’t thought of it, because when I used ‘onlyTemp’ in my currentweather module config, it worked when I entered ‘true’. But it also only shows the temperature when I enter ‘false’ there, so it somehow defaults to true if you enter it with any value between single quotes.

      Anyhow, thanks again!

      posted in Troubleshooting
      M
      mh77
    • Basic configuration issues with compliments & calendar modules

      Hi all,

      Some very simple things don’t work, I’m guessing it’s me so thanks for your patience :) I’ve successfully installed MagicMirror and have been able to configure it to show my Google Calendar, as well as weather for my region. So far, so good.

      However, I could only get the compliments module to disappear by removing it from the config.js file. Adding disabled: true in the following manner (like it says here) does not seem to have any effect:

                      {
                              module: 'compliments',
                              position: 'lower_third',
                              disabled: 'true',
                              config: {
                                      }
                      },
      

      Then, when I configure the calendar, the maximumEntries seems to be respected but preventing fading or hiding the symbol before each entry does not work with this configuration:

                      {
                              module: 'calendar',
                              position: 'top_left',
                              header: 'Agenda',
                              config: {
                                      maximumEntries: '5',
                                      displaySymbol: 'false',
                                      fade: 'false',
                                      calendars: [
                                              {
                                                      url: 'https://URL.ics'
                                              }
                                      ]
                              }
                      },
      

      I hope anyone knows if I’m doing something wrong, and what?

      posted in Troubleshooting
      M
      mh77