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

    Ellings3n

    @Ellings3n

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

    Ellings3n Unfollow Follow

    Latest posts made by Ellings3n

    • MMM-CalendarExt2 - Repeat event not showing

      Greetings :)

      I’ve stumbled across a little problem before I can finish my project. If I create an event to repeat yearly (birthday), the event won’t show. But if I create the same event without repeat then it’s visible on the calendar.

      Anyone got any experience regards repeatedly events not showing into Calendar view (Any view)?

      posted in Troubleshooting
      E
      Ellings3n
    • RE: MMM-CalendarExt2 showing daily in columns

      @chris_d

      Good to see that everything worked out in the end! :)

      Regards your new problem, I’m as clueless as you :(
      I use the same view (with no issues) so I’ll post my config in case I have something different settings then you:

      name: "Oversikt",
      mode: "daily",
      type: "row",
      position: "bottom_bar",
      slotCount: "5",
      locale: "en",
      hideOverflow: false,
      filterPassedEvent: true,
      calendars: ["Aktiviteter","Mat"],
      
      • Ellings3n
      posted in Troubleshooting
      E
      Ellings3n
    • RE: MMM-CalendarExt2 - Event Color Fade - Removable?

      @ellings3n

      Found the solution:

      Adding the following command to my css config fixed it :)

      background-image:none;
      
      • Ellings3n
      posted in Troubleshooting
      E
      Ellings3n
    • MMM-CalendarExt2 - Event Color Fade - Removable?

      Greetings :)

      Been tinkering for a few days now to remove the black color fade from my events.

      Screenshot

      Screenshot

      Been changing a lot of custom.css settings without any luck.
      Changing color isn’t the problem but removing the fading effect is. My goal would be to have it with the same opacity as everything else.

      Some help or tip in the right direction would be awesome.

      Here is my settings so far:

      
      .CX2 .period .eventTitle {
      	  white-space:normal;
      }
      
      .CX2 .agenda .eventSub {
             display:none;
      }
      
      .CX2 .daily .fullday .evenTime {
      	display:none;
      }
      
      .CX2 .slot .event {
      	background-color:rgba(0,0,0,0.1);
      	color:white;
      }
      
      .CX2 .slot .slotHeader {
      	background-color:inherit;
      	text-transform:uppercase;
      	font-size:15px;
      	font-family:"Roboto Condensed", Arial, Helvetica, sans-serif;
      	font-weight:400;
      	border-bottom:1px solid #666;
      	line-height:15px;
      	padding-bottom:5px;
      	margin-bottom:10px;
      	color:#999;
      }
      
      .CX2 .today .slotHeader * {
      	color:inherit;
      }
      
      .CX2 .event .fullday {
      	background-color:rgba(0,0,0,0.1);
      	color:white;
      }
      
      .CX2 .slot .slotFooter {
      	display:none;
      }
      
      .CX2 .slot .slotContent {
      	background-color:rgba(0,0,0,0.1);
      }
      
      .CX2 .aktiv {
      	background-color:rgba(0,0,0,0.1);
      	color:white;
      }
      
      .CX2 .mat {
      	background-color:rgba(0,0,0,0.1)
      	color:white;
      }
      
      
      • Ellings3n
      posted in Troubleshooting
      E
      Ellings3n
    • RE: MMM-CalendarExt2 showing daily in columns

      Greetings :)

      New to Magicmirror but I found some example code in the author’s module folder that did the job for me at least.
      Link: MMM-CalendarExt2

      If you scroll down on the page, you will find the code for config and css changes.

      In theory the following lines to daily view config should fix it for you I guess(did for me):

      type: "row",
      slotCount: "5",
      
      posted in Troubleshooting
      E
      Ellings3n
    • Calendar - Ends In Invalid Date

      Greetings Everyone :)

      I’ve been having an issue for a long time were past events gets “stuck” in the calendar with format:

      “Event Name” - “Ends in Invalid Date”

      The only “workaround” is to manually delete old events from calendar.

      New and current events are working smoothly.

      Tried googling, searching on different forums and on this one without any luck. Last thing I found was to add “showEnd: false,” to the config file with no visual effect.

      config:

      	      module: 'calendar',
      	      header: 'Kommende Aktiviteter',
      	      fetchInterval: 3600000,
      	      position: 'top_left',
      	      config: {
      		                  fade: false,
      		      		  maximumEntries: "5",
      		      		  showEnd: false,
      		                  calendars: [ {
      					                    symbol: 'calenar-check-o ',
      					                    url: "Calendar Link",
      

      Any help would be appreciated.

      -Ellingsen

      posted in Troubleshooting calendar events invalid date
      E
      Ellings3n