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

    Posts

    Recent Best Controversial
    • RE: MMM-Google assistant not responding

      @viveksahani support for this module is over on the developers forum.

      posted in Troubleshooting
      B
      bicolorbore586
    • RE: MMM-CalendarExt3

      Is there a way of getting icons to sit in specific top bars (with the date number) of cells/days?

      I use MMM-CalendarExt3 to show my upcoming month, the default calendar to show the next couple of days events and MMM-Birthdays to show upcoming birthdays.

      What I would like to do is have a birthday cake icon sat in the date field, so I can see that that date is a birthday, without any written information in the cell, i.e. the white line wouldn’t be there in the image below.

      1af439a6-5ee7-4951-b584-06ffba318e30-image.png

      d16e0200-1d92-4fe7-bd9d-eca55bf8ef2e-image.png

      posted in Utilities
      B
      bicolorbore586
    • RE: MMM-CalendarExt3

      @fedale yes, as Sam says, don’t modify the module css, all css work should be done in the custom.css

      posted in Utilities
      B
      bicolorbore586
    • RE: MMM-CalendarExt3

      @fedale
      I have the below in my custom.css

      /* MMM-CalendarExt3 */
      .CX3 .cw {
      display:none;
      }
      
      posted in Utilities
      B
      bicolorbore586
    • RE: Hiding degree Fahrenheit

      @sdetweil what impact would it have if I changed the code? for updates etc?

      posted in Troubleshooting
      B
      bicolorbore586
    • RE: MMM-Flights Not Working

      @KI6UVE
      Your config.js should be as follows

      {
      module: “MMM-Flights”,
      position: “middle_center”,
      config: {
      laMin: 33.183537,
      laMax: 32.849596,
      loMin: -117.204895,
      loMax: -116.790161,
                     }
      },
      

      Note the } without the comma closes off the config part. (With the comma, closes the module)

      posted in Troubleshooting
      B
      bicolorbore586
    • Hiding degree Fahrenheit

      In both the MMM-Weather-Now and MMM-3Day-Forecast, how would I not show the “(43 o F)”? My config.js is metric, but looking at the code it appears whichever you select the other shows in brackets.

      3f43bf15-8baf-4a96-b241-9c0381948a36-image.png

      posted in Troubleshooting
      B
      bicolorbore586
    • RE: MMM-CalendarExt3

      @mumblebaj so that now means I can see the events again, but still not coloured how I want.

      posted in Utilities
      B
      bicolorbore586
    • RE: MMM-CalendarExt3

      @MMRIZE have tried that, still doesn’t show anything.

      eventTransformer: function(event) {
      if (event.title.search(“Ben”) > -1) {
      event.className = “Ben”;
      return event
      }
      }

      posted in Utilities
      B
      bicolorbore586
    • RE: MMM-CalendarExt3

      @fedale @MMRIZE @chadjohn2 I am also trying (unsuccessfully) to have the Calendar event change color depending on which name is in the title.

      With the original magicmirror calendar, I’ve used
      customEvents: [ {keyword: “Ben”, color: “Brown”} ], which shows the event title and associated symbol in Brown.
      1290b0bd-b654-42fe-9b13-051ec662cdf2-image.png

      In EXT3, using eventTransformer, only the symbol shows in color

      I’ve tried to use
      eventTransformer: function(event) {
      if (event.title.search(“Ben”) > -1) {
      event.className = “Ben”;
      }
      }
      with customer.css
      .CX3 .Ben {
      color: brown;
      }

      However, this then shows a blank calendar
      e0bc6deb-9688-4354-a914-bbeae156c41e-image.png

      Have any of you been successful?
      Where am I going wrong?

      Thanks

      posted in Utilities
      B
      bicolorbore586
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 2 / 6