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-CalendarExt3 no Entries since last update

    Scheduled Pinned Locked Moved Solved Troubleshooting
    17 Posts 3 Posters 884 Views 3 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.
    • A Offline
      Andreas1956
      last edited by

      Hi together,
      since this afternoon, after updated Calendar and MM, Calendar looks like this no text in the colored appointments.
      Any idea? thanks
      IIMG_3716.JPG

      S 1 Reply Last reply Reply Quote 0
      • A Offline
        Andreas1956 @MMRIZE
        last edited by

        @MMRIZE said in MMM-CalendarExt3 no Entries since last update:

        @Andreas1956
        You are clicking the day cell, not event.

        ok, found the event cells now.
        think the problem comes from the font-awesome symbols. i removed the symbol property from all 5 calendar entries, then everything was ok but no symbols (only the standard calendar symbol)
        then i added symbol:[“trash”] to the calendar garbage again - title disappeared again.

        IMG_3726.jpg

        1 Reply Last reply Reply Quote 0
        • S Offline
          sdetweil @Andreas1956
          last edited by

          @Andreas1956 you mean you updated MMM-CalendarExt3??

          did you npm install after git pull?

          Sam

          How to add modules

          learning how to use browser developers window for css changes

          A 1 Reply Last reply Reply Quote 0
          • A Offline
            Andreas1956 @sdetweil
            last edited by

            @sdetweil
            yes i did, no errors

            M 1 Reply Last reply Reply Quote 0
            • M Offline
              MMRIZE @Andreas1956
              last edited by

              @Andreas1956
              Share me the config and custom.css.

              A 1 Reply Last reply Reply Quote 0
              • A Offline
                Andreas1956 @MMRIZE
                last edited by

                @MMRIZE said in MMM-CalendarExt3 no Entries since last update:

                @Andreas1956
                Share me the config and custom.css.
                custom.css all lines

                body {
                	/* margin: 60px;*/
                	margin: 20px;
                	position: absolute;
                	/*height: calc(100%-120px);
                	width: calc(100%-120px);*/
                	height: calc(100%-60px);
                	width: calc(100%-60px);
                }
                
                .CX2 .luett {
                	background-color: #FF4500;
                	color: #FFFFFF;
                }
                .CX2 .luett.fullday {
                	background-color: #FF4500;
                	color: #FFFFFF;
                }
                .CX2 .mueller {
                	background-color: #7CFC00;
                	color: #000000;
                }
                .CX2 .mueller.fullday {
                	background-color: #7CFC00;
                	color: #000000;
                }
                .MMM-Fuel .xsmall {
                  font-size: 10px;
                  line-height: 15px;
                }
                
                .MMM-Fuel .small {
                  font-size: 15px;
                  line-height: 20px;
                }
                
                .MMM-Fuel .medium {
                  font-size: 25px;
                  line-height: 30px;
                }
                
                .MMM-Fuel .large {
                  font-size: 55px;
                  line-height: 55px;
                }
                
                .MMM-Fuel .xlarge {
                  font-size: 65px;
                  line-height: 65px;
                }
                .MMM-RTSPStream .innerWrapper {
                  position: relative;
                  width: 352px; /* Video width + 2*border + 2*padding */
                  height: 242px;
                  border: 0px solid white;
                }
                

                config.js only lines of calendar module

                		{
                			module: "calendar",
                			// position: "top_left",
                			config: {
                				maximumEntries: 100,
                				fetchInterval:600000,
                				broadcastPastEvents: true,
                				calendars: [
                				{
                					name: "Luett",
                					//className: "luett",
                					url: "https://calendar.google.com/calendar/ical/TOPSECRET/basic.ics",	
                					color: "red",
                					//calendarSeq: 1,
                					symbol: ["house"]
                				},
                				{
                					name: "Mueller",
                					//className: "mueller", 
                					url: "https://calendar.google.com/calendar/ical/TOPSECRET/basic.ics",	
                					color: "green",
                					//calendarSeq: 2,
                					symbol: ["bed"]
                				},
                			
                				{
                					name: "Termine",
                					url: "https://calendar.google.com/calendar/ical/TOPSECRET/basic.ics",
                					color: "blue",
                					//calendarSeq: 3,
                					symbol: ["clock"]					
                				},
                				{
                					name: "Garbage",
                					url: "https://calendar.google.com/calendar/ical/TOPSECRET/basic.ics",	
                					color: "grey",
                					//calendarSeq: 4,
                					symbol: ["trash-alt"]
                				},
                				{
                					name: "Gezeiten",
                					url: "https://calendar.google.com/calendar/ical/TOPSECRET/basic.ics",
                					//color: "blue",
                					//calendarSeq: 5,
                					symbol: ["water"]
                					
                				},
                				{
                					name: "Feiertage",
                					url: "https://calendar.google.com/calendar/ical/TOPSECRET/basic.ics",
                					color: "brown",
                					symbol: ["tree"]
                				},
                						]
                			}
                		},
                
                {
                			module: "MMM-CalendarExt3",
                			position: "middle_center",
                			title: "",
                			config: {
                				mode: "week",
                				weekIndex: 0,
                				weeksInView: 4,
                				instanceId: "basicCalendar",
                				locale: 'de-DE',
                				//useSymbol: false,
                				maxEventLines: 4,
                				firstDayOfWeek:1,
                				//CalendarSet: ["Luett", "Mueller", "Termine", "Garbage", "Gezeiten", "Feiertage" ],
                				CalendarSet: [],
                			}
                		},
                {
                
                M 2 Replies Last reply Reply Quote 0
                • M Offline
                  MMRIZE @Andreas1956
                  last edited by

                  @Andreas1956
                  Not tested yet… but .CX2 in css/custom.css ???

                  1 Reply Last reply Reply Quote 0
                  • M Offline
                    MMRIZE @Andreas1956
                    last edited by

                    @Andreas1956
                    I checked your config and css but nothing seems wrong.
                    From which version were you updated to new one? (I think you cannot remember, but how long has it been since the previous update?)
                    Anyway, I think you may have missed something in the last update.

                    1. Go to the CX3 module directory, then;
                    git pull
                    npm update
                    

                    I doubt you may miss npm update part in your last update process.

                    1. If it still does not work, do this in your CX3 module directory
                    git submodule update --init --recursive
                    
                    1. Still not working; remove the CX3 directory and then reinstall again.

                    2. Still not working; let’s discuss deeper.

                    A 1 Reply Last reply Reply Quote 0
                    • A Offline
                      Andreas1956 @MMRIZE
                      last edited by

                      @MMRIZE
                      ok, thanks
                      if i have an updatenotification, i do it same or next day
                      now

                      • did Points 1.-3.,
                      • changed .cx2 to .cx3 in css
                      • updated magicmirror too
                      • startet all new
                      • checked my google calendars - everything ok. on iPhone and iPad
                      • tried to remove the color property from one calendar entry

                      what i forgot to say, it’s running under windows11 (but since end of March 2023 without any problems)

                      Same as in screenshot, no text, only colored blocks for appointments

                      M 1 Reply Last reply Reply Quote 0
                      • M Offline
                        MMRIZE @Andreas1956
                        last edited by

                        @Andreas1956
                        OK. Look inside deeper.

                        1. Execute MM as dev mode.
                        • If you are using pm2, stop it first.
                        • In your MM directory, run this script.
                        npm run start:dev
                        
                        1. Or alternatively, After MM’s normal execution, Ctrl + Shift + i (Or Alt+F12, it could be different by your system environment), Anyway, open the dev-console on the browser/client with hotkeys.

                        2. It will open this kind of dev-console as a side panel.

                        1e00b3f6-d008-47c9-ba17-796153605271-image.png

                        1. At the panel, you can see Elements or Console tab. Go to Elements Tab.

                        83c1acb2-4f63-4510-a27b-56d3a7664d98-image.png

                        1. There would also be cursor icon (left side of the Elements Tab mark); select it and click to any event element

                        28523e3f-0fec-4105-b8fe-34241127eac8-image.png

                        1. Now, the side Elements tab will focus on the HTML code for the element you clicked.
                          070d4a1e-643f-4597-b629-25a90d804b8c-image.png

                        2. navigate into the title element

                        cca41ebc-8b42-481a-990f-49b3d5952a8c-image.png

                        1. Check whether proper text exists there.

                        4359a8bb-f893-44b6-9806-6f38caa7dd56-image.png

                        1. And See the Styles tab.(Somewhere in the side panel. Usually below the Elements window)

                        39cd2337-4303-4ea2-afc2-00ef9193b41d-image.png

                        You can see there are --calendarColor and oppositeColor attributes there. And there is no other overridden colors.

                        1. Or you can check this in Computed tab.

                        be8733f9-f456-4be7-9691-3e3001752b1b-image.png

                        There are some calculated results for the style.

                        Could you find any suspicious things on watching your case?

                        A 1 Reply Last reply Reply Quote 0
                        • A Offline
                          Andreas1956 @MMRIZE
                          last edited by

                          @MMRIZE
                          Thanks, a lot of Information event =true on 19th but nothing like title
                          I will check for warnings or errors tomorrow
                          IMG_3767.jpeg

                          M 1 Reply Last reply Reply Quote 0
                          • 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