MagicMirror Forum
    • Recent
    • Tags
    • Unsolved
    • Solved
    • MagicMirror² Repository
    • Documentation
    • 3rd-Party-Modules
    • Donate
    • Discord
    • Register
    • Login
    1. Home
    2. fedale
    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

    fedale

    @fedale

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

    fedale Unfollow Follow

    Latest posts made by fedale

    • 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