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

Posts

Recent Best Controversial
  • RE: Calendar and Font Awesome - no icons

    @sdetweil Thanks again. I went back to basics and removed all ‘my’ entries from config.js and replaced them with the config from the reference page, slightly edited. This is what I now have:

        {
        module: "calendar",
        position: "bottom_left", 
        config: {
    	   coloredText: false,
    	   coloredBorder: false,
    	   coloredSymbol: false,
    	   coloredBackground: false,
    	   calendars: [
    		   {
    			  url: 'https://calendar.google.com/calendar/ical/Calendar1Redacted/basic.ics',
    			  symbol: 'calendar',
     	       },
    	],
    	}
    	},
    
    

    Which delivers: Cal3.png

    Looking at the developers window, I see: Cal4.png

    and Cal5.png

    posted in Troubleshooting
    R
    RGN01
    Jun 10, 2023, 4:42 AM
  • RE: Calendar and Font Awesome - no icons

    @sdetweil Thank you. You have helped a lot but I’m still battling. I’ve had a long day and am struggling to concentrate so will resume this tomorrow.

    posted in Troubleshooting
    R
    RGN01
    Jun 8, 2023, 8:52 PM
  • RE: Calendar and Font Awesome - no icons

    @sdetweil Thank you so much for your assistance - I really do appreciate it!

            {keyword: 'Recycling', symbol: 'fas fa-house', color: 'Red'},
            {keyword: 'Rubbish', symbol: 'fas fa-person', color: 'Gold'}
    		],
            calendars: [
              {
                url: 'https://calendar.google.com//Calendar1Redacted/basic.ics',
                symbol: 'fa-house',
              },
    
    

    It is matching to the ‘Rubbish’ keyword.

    Cal1.png

    Cal2.png

    posted in Troubleshooting
    R
    RGN01
    Jun 8, 2023, 8:22 PM
  • RE: Calendar and Font Awesome - no icons

    @sdetweil Thanks for clarifying. Unfortunately, no, it did not.

    cal.png

    posted in Troubleshooting
    R
    RGN01
    Jun 8, 2023, 7:46 PM
  • RE: Calendar and Font Awesome - no icons

    @sdetweil Thank you. I have done the font reinstall and rebooted. Still the same, unfortunately.

    When you said “then try MM again” did you mean reinstall or just see if it works?

    posted in Troubleshooting
    R
    RGN01
    Jun 8, 2023, 7:40 PM
  • RE: Calendar and Font Awesome - no icons

    @sdetweil thanks for your reply.

    	"name": "magicmirror",
    	"version": "2.23.0",
    
    posted in Troubleshooting
    R
    RGN01
    Jun 8, 2023, 7:09 PM
  • RE: Calendar and Font Awesome - no icons

    @BKeyport Thank you - perhaps that is my path of least resistance - reinstall MM.

    I’ll give that a go on the weekend, if I don’t figure this out before.

    posted in Troubleshooting
    R
    RGN01
    Jun 8, 2023, 3:43 AM
  • RE: Calendar and Font Awesome - no icons

    @PierreGode Thank you for your help and no need to apologise for the Swedish!

    I have tried using your approach (and your icons and colours) with new keywords to match - and the colouring works but I still don’t get the icons (I get empty frames).

    It is making me wonder if there is an underlying dependency that I’m missing. I have checked that Calendar is up to date and it is, as is my MM installation.

    I will keep on battling away to identify the issue!

    Richard

    posted in Troubleshooting
    R
    RGN01
    Jun 7, 2023, 6:44 PM
  • RE: Calendar and Font Awesome - no icons

    @BKeyport thank you for your assistance. I’m still battling. I now have this:

              {
                url: 'https://calendar.google.com/calendar/ical/calendar1redacted/basic.ics',
                symbol: 'fa-house',
                symbolClassName: "fas fa-",
                color: 'crimson'
              },
    
    

    The icons (the placeholders) have now disappeared completely and the text shifted left. I have also tried “fa-solid”, “fas”, and “fa-solid fa-” for symbolClassName.

    posted in Troubleshooting
    R
    RGN01
    Jun 7, 2023, 5:41 AM
  • Calendar and Font Awesome - no icons

    I am struggling to get the Font Awesome icons to show in Calendar and can’t figure out what I’m doing wrong so would appreciate any help, please.

    MM version: 2.23.0

    The applicable part of config.js looks like this:

        {
              module: 'calendar',
              position: 'bottom_left',
              header: 'Family',
              config: {
                fade: false,
                timeFormat: 'absolute',
                dateFormat: 'DD/MM/YY',
                coloredText: false,
                coloredBorder: true,
                coloredSymbol: true,
                coloredBackground: false,
                calendars: [
                  {
                    url: 'https://calendar.google.com/calendar/ical/calendar1redacted/basic.ics',
                    symbol: 'house',
                    color: 'crimson'
                  },
                  {
                    symbol: 'person',
                    symbolClassName: "fas fa-fw fa-",
                    color: 'blue',
                    url: 'https://calendar.google.com/calendar/ical/calendar2redacted/basic.ics'
                  },
                  {
                    symbol: 'calendar',
                    symbolClassName: "fas fa-",
                    color: 'green',
                    url: 'https://www.calendarlabs.com/ical-calendar/ics/75/UK_Holidays.ics'
                  },
                  {
                    symbol: 'person-dress',
                    color: 'pink',
                    symbolClassName: "fas fa-",
                    url: 'https://calendar.google.com/calendar/icalcalendar3redacted/basic.ics'
                  }
                ],
                fullDayEventDateFormat: 'DD/MM/YY',
                maximumNumberOfDays: 60,
                hidePrivate: true,
                maxTitleLength: 70,
                maxLocationTitleLength: 70,
                defaultSymbolClassName: "fas fa-",
                wrapEvents: true
              }
            },
        
    
    

    I’m probably missing something simple but am not succeeding in getting the icons to show - all I get is coloured square frames.

    cal.png

    Thanks in advance for any help!

    posted in Troubleshooting
    R
    RGN01
    Jun 7, 2023, 3:54 AM
  • 1 / 1
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