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

    Posts

    Recent Best Controversial
    • RE: MMM-CalendarExt3

      @sdetweil

      Where can i input the offset?
      Can i do that in the default calendar?

      posted in Utilities
      F
      fedale
    • RE: MMM-CalendarExt3

      @Welle05 have you found a solution for this? i have the same issue in Sweden.
      And it´s only for fullday events.

      posted in Utilities
      F
      fedale
    • RE: [MMM-Skolmaten] Shows school lunch menus in Sweden from skolmaten.se

      @retroflex I am having issues with MMM-Skolmaten. Only says laddar…
      I also tried to re installing the module,with any luck

      posted in Utilities
      F
      fedale
    • RE: MMM-CalendarExt3

      Could i have icons on different words in calendar?
      I only have one calendar, but previously cx2 could get with differnt pictures like this example.

       if (event.title.search("Work") > -1) {
      	event.icon = "ic:outline-work-outline";
      	event.className = "work" 
      

      }
      else if(event.title.search(“Trash”) > -1) {
      event.icon = “mdi:recycle”;
      event.className = “Trash”
      }

      posted in Utilities
      F
      fedale
    • RE: MMM-CalendarExt3

      @bicolorbore586 Thanks guys.

      posted in Utilities
      F
      fedale
    • RE: MMM-CalendarExt3

      I learnt something new, never thought to look into the module folder css file.
      Always though only the main.css and custom.css was the only ones to change.

      Found the wordning now in MMM-CalendarExt3.css file within the module.
      Removing the CW, the way i wanted. Just wanted to share.

      MMM-CalendarExt3.css file and remove the CW to only get the week number:
      .CX3 .cw::before {
      content: 'CW ’
      }

      posted in Utilities
      F
      fedale
    • RE: MMM-CalendarExt3

      @MMRIZE Any surgestions?

      Have some other questions.

      1. How to remove the CW wording, infront of the weeks number?

      2. The eventTransformer does not color not-fullday items. Is there a quick work around for that?
        So if i have only an hour in my calendar will still show color.

      /*
      eventTransformer: (ev) => {
      if (ev.title.search(‘garbage’) > -1) ev.color = ‘green’
      return ev
      }
      */

      1. Also i add picture to the eventTransformer? I had a recyle one for this garbage earlier.
      posted in Utilities
      F
      fedale
    • RE: MMM-CalendarExt3

      @sdetweil Thanks, that worked like a charm.

      Have some other questions.

      1. How to remove the CW wording, infront of the weeks number?

      2. The eventTransformer does not color not-fullday items. Is there a quick work around for that?
        So if i have only an hour in my calendar will still show color.

      /*
      eventTransformer: (ev) => {
      if (ev.title.search(‘garbage’) > -1) ev.color = ‘green’
      return ev
      }
      */

      1. Also i add picture to the eventTransformer? I had a recyle one for this garbage earlier.
      posted in Utilities
      F
      fedale
    • RE: MMM-CalendarExt3

      Does anyone have a working config for google calendar. The old code i had in EXT2 isnt working with the new EXT3.
      In the new EXT3 one i cannot get any feedback from google.

      Screenshot 2023-01-16 at 12.44.32.png

      posted in Utilities
      F
      fedale
    • RE: MMM-CalendarExt3

      Ok thanks for the feedback.

      I have another question
      The new calendarExt3 and the i cant seem to get this transform fuction to work anymore. I had the transform in the config.js file and the custom.css with different words to get different color on each work, as we have family calendar.
      Tried to change it to cx3 without any luck. (/* */ is only to stop the code here.)

      Example
      /*
      transform: function(event) {
      if (event.title.search(“Jobb”) > -1) {
      event.icon = “ic:outline-work-outline”;
      event.className = “Jobb”;
      }

      */

      In the custom.css:
      /*
      }
      .CX3 .Jobb.fullday {
      background-color:rgba(0,128,128);
      color:#000;
      }
      .CX3 .Jobb {
      background-color:rgba(0,128,128);
      color:#000;
      }

      */

      posted in Utilities
      F
      fedale
    • RE: MMM-CalendarExt3

      Okay so it´s not in the css. Thought i had something todo with the weeks mark one. As this can change colour and other things if i don´t recall wrong.
      I saw it like this before https://imgur.com/mwwPwEl
      Thats why i though this was possible.

      I have it 1st day of the week now. And if displayed more than 3-4 items in the 1st day of the week. Then not all items will show. due to the week number takes up a slot there.
      As i am showing 3 weeks at time i have a amount of space at liberty.

      But i really like the week number ;)

      posted in Utilities
      F
      fedale
    • RE: MMM-CalendarExt3

      How do i add the week number in a own colum, not in first monday. As this is taking up space in colum for monday.
      Would like to have in it´s own colum. As i understand i will need to do something in custom.css but unsure how to resolve this.

      Any one have a solution for this?

      posted in Utilities
      F
      fedale
    • RE: MMM-CalendarExt2

      @sdetweil okay thanks. I did not know that.

      posted in Utilities
      F
      fedale
    • RE: MMM-CalendarExt2

      How do i get an extra colium for week numbers? Today its in the field for monday in my calendar.How do i specify this in css?
      I have the weeksmark added. But unsure how to resolve this into its own colum. Any one have a surgestion?

      posted in Utilities
      F
      fedale
    • RE: MMM-CalendarExt2

      How can i have week numbers as an own colum?
      Showing the weeks separerat in its own colum?
      And the yellow marking accross the week for the current week?
      Like in this picture https://imgur.com/mwwPwEl

      Today i have it in the first day of the week. Due to a small screen its not showing all the calendar inputs as it takes up a row by itself. limiting the amount of events i could have

      posted in Utilities
      F
      fedale
    • RE: MMM-CalendarExt2

      @BKeyport This solved the problem. Thank you

      posted in Utilities
      F
      fedale
    • RE: MMM-CalendarExt2

      @sdetweil I tried the fetchInterval. But have not been sucessfull with that one.

      But everytime i save my config file it update at once.

      Is there somewhere else than in the config.js file i need to change the fetchInterval?

      posted in Utilities
      F
      fedale
    • RE: MMM-CalendarExt2

      @sdetweil I tried that earlier without any result. And seemed like the only thing updating was the screen flickering

      I put it under the module config in the config.js was that the correct postion?

      posted in Utilities
      F
      fedale
    • 1 / 1