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.

    Calendar modification

    Scheduled Pinned Locked Moved Tutorials
    35 Posts 15 Posters 46.2k Views 12 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.
    • KirAsh4K Offline
      KirAsh4 Moderator
      last edited by

      Link works for me … unless something changed between when you posted your response and now …

      A Life? Cool! Where can I download one of those from?

      1 Reply Last reply Reply Quote 0
      • G Offline
        garnett
        last edited by

        attention!
        this works only if the calendar is shared to public!

        KirAsh4K P 2 Replies Last reply Reply Quote 0
        • KirAsh4K Offline
          KirAsh4 Moderator @garnett
          last edited by

          @garnett, both public and private Google calendars work. I have both displayed on mine.

          A Life? Cool! Where can I download one of those from?

          G M 2 Replies Last reply Reply Quote 0
          • G Offline
            garnett @KirAsh4
            last edited by

            @KirAsh4
            uh yes, sorry! thats right. i was confused by the message from the google calendar.

            works with private and public ;)

            1 Reply Last reply Reply Quote 0
            • A Offline
              aarinsingh
              last edited by

              Can somebody please post their config file with the maximumNumberOfDays line inserted. I’m not sure what I’m doing wrong but everytime I try to adjust this I crash my config file. Everything else is working perfect.

              Thanks

              1 Reply Last reply Reply Quote 0
              • MichMichM Offline
                MichMich
                last edited by

                @aarinsingh Could you copy paste your config including the maximumNumberOfDays (so I can try to find what you’re doing wrong). Don’t forget to remove sensitive data.

                1 Reply Last reply Reply Quote 0
                • B Offline
                  brad
                  last edited by paviro

                  Here is my info @aarinsingh , it doesn’t crash but it is also not limiting the number of days. From what I can see at a quick glance is that this was using a method that may have been replaced in the load process for this module, because it seems to only be using the default for this setting. I may follow to code later and see how this is loading and why my setting is being ignored.

                  {
                  			module: 'calendar',
                  			header: 'Events',
                  			position: 'top_left',
                  			maximumNumberOfDays: 7,
                  			config: {
                  				calendars: [
                  					{
                  						symbol: 'calendar-check-o ',
                  						url: 'https://calendar.google.com/calendar/ical/your-info'
                  					}
                  				]
                  			}
                  		},
                  

                  Note from admin: Please use Markdown on code snippets!

                  1 Reply Last reply Reply Quote 0
                  • Wilco89W Offline
                    Wilco89
                    last edited by

                    Put it after config: { and it will work

                    1 Reply Last reply Reply Quote 0
                    • MichMichM Offline
                      MichMich
                      last edited by

                      maximumNumberOfDays should be part of the config object:

                      {
                      			module: 'calendar',
                      			header: 'Events',
                      			position: 'top_left',
                      			config: {
                                                      maximumNumberOfDays: 7,
                      				calendars: [
                      					{
                      						symbol: 'calendar-check-o ',
                      						url: 'https://calendar.google.com/calendar/ical/your-info'
                      					}
                      				]
                      			}
                      		},
                      
                      1 Reply Last reply Reply Quote 0
                      • B Offline
                        brad
                        last edited by

                        That makes perfect sense. :) sorry didn’t catch that…

                        1 Reply Last reply Reply Quote 0
                        • M Offline
                          MagicCrumps1 @KirAsh4
                          last edited by

                          @KirAsh4 Weird. I had to make mine public or else the dashboard wont be able to display saying “No Events”

                          KirAsh4K 1 Reply Last reply Reply Quote 0
                          • KirAsh4K Offline
                            KirAsh4 Moderator @MagicCrumps1
                            last edited by

                            @MagicCrumps1, perhaps you were using the wrong URL? There’s both a public and a private one. If you use the public URL, then you must also set your calendar to public view. But the private URL has the authentication key in it. No need to make the calendar public.

                            A Life? Cool! Where can I download one of those from?

                            M 1 Reply Last reply Reply Quote 1
                            • M Offline
                              MagicCrumps1 @KirAsh4
                              last edited by

                              @KirAsh4 Of course that worked. Thanks for the silver bullet

                              1 Reply Last reply Reply Quote 0
                              • 0 Offline
                                00conman
                                last edited by

                                Hey guys sorry I’ve been away so I haven’t seen all these posts but I would recommend putting the calendar in monthly mode so events to disappear prematurely.

                                KirAsh4K 1 Reply Last reply Reply Quote -1
                                • KirAsh4K Offline
                                  KirAsh4 Moderator @00conman
                                  last edited by

                                  @00conman, care to explain what you mean?

                                  A Life? Cool! Where can I download one of those from?

                                  0 1 Reply Last reply Reply Quote 0
                                  • 0 Offline
                                    00conman @KirAsh4
                                    last edited by

                                    @KirAsh4 I keep my calendar in month mode because it makes sure that events don’t delete halfway through a day and when in month mode it prevents a glitch from occurring. In that glitch on the mirror itself events will be assigned random times, in my case the newest event would be assigned 4:00 am and then each event after that would increase by the hour to 5:00 and so on. There is also an occurrence that events will randomly delete themselves from the actual mirror, not the online calendar, so putting this in month mode will cause them to remove themselves, or stop displaying, on the mirror at 12:00 o’clock midnight the day that they were assigned. It is certainly not necessary but I would do it because it take just a few seconds.

                                    1 Reply Last reply Reply Quote 0
                                    • 0 Offline
                                      00conman
                                      last edited by

                                      To anyone wondering how to switch the calendar to month mode here is a few images.

                                      Main calendar:
                                      https://gyazo.com/52f994a4b33968c8a0ebe2effe349179

                                      And where you switch it:
                                      https://gyazo.com/81e42213091d63b75e4bb9798e01d4ac

                                      Please note that it might not work the first time in that case either try again and reload the page or try again and go to settings and save the calendar.

                                      1 Reply Last reply Reply Quote 0
                                      • KirAsh4K Offline
                                        KirAsh4 Moderator
                                        last edited by

                                        That’s something that is outside of the scope of MM itself. They don’t have anything to do with the MM calendar module itself. When you said to keep the calendar in monthly mode, my first reaction was, ‘Uh, the calendar doesn’t have a monthly view’, hence my request for clarification.

                                        It’s helpful to others who are using that specific service to host a calendar, and trying to incorporate it into MM, but you needed to specify what you were referring to.

                                        Thanks for the clarification.

                                        A Life? Cool! Where can I download one of those from?

                                        1 Reply Last reply Reply Quote 0
                                        • A Offline
                                          aarinsingh
                                          last edited by

                                          Wow, Thanks Guys.

                                          I took a couple days of from the project and hit the lake, so sorry for the slow replies.

                                          @MichMIch - That cured it, I had the maximunNumberOfDays Line to far down.

                                          I have a couple other questions but I won’t clutter up the calendar Module board with them.

                                          1 Reply Last reply Reply Quote 0
                                          • P Offline
                                            Plati
                                            last edited by Plati

                                            How to get ICAL for a Facebook calendar:

                                            https://www.facebook.com/help/152652248136178/

                                            2 different ICAL for birthdays and upcoming events :)

                                            Useful config part: “maximumEntries: X”

                                            And holidays calendars for many countries: https://www.mozilla.org/en-US/projects/calendar/holidays/

                                            1 Reply Last reply Reply Quote 1

                                            Hello! It looks like you're interested in this conversation, but you don't have an account yet.

                                            Getting fed up of having to scroll through the same posts each visit? When you register for an account, you'll always come back to exactly where you were before, and choose to be notified of new replies (either via email, or push notification). You'll also be able to save bookmarks and upvote posts to show your appreciation to other community members.

                                            With your input, this post could be even better 💗

                                            Register Login
                                            • 1
                                            • 2
                                            • 1 / 2
                                            • 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