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

    redkittens

    @redkittens

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

    redkittens Unfollow Follow

    Latest posts made by redkittens

    • Newsfeed not displaying on MM

      The default newsfeed module is not displaying when I run MM, and doesn’t say it is loading. It used to work fine. I’ve since made made various edits and added an additional news source and it’s still not working. This is what it looks like in the config.js file:

                      {
                              module: "newsfeed",
                              position: "bottom_bar",
                              config: {
                                      feeds: [
                                              {
                                                      title: "ABC News",
                                                      url: "http://abc.net.au/news/feed/51120/rss.xml",
                                              },
                                              {
                                                      title: "Huffington Post",
                                                      url: "https://www.feedspot.com/infiniterss.php?q=site:http%3A%2F%2Fwww.huffingtonpost.com.au%2Frss%2Findex.xml",  
                                              },
                                      ],
                                      showSourceTitle: true,
                                      showPublishDate: true,
                              }
                      },
              ]
      
      };
      

      and this is what the default newsfeed module looks like:

      Module.register("newsfeed",{
      
              // Default module config.
              defaults: {
                      feeds:
                              {
                                      title: "ABC News",
                                      url: "http://abc.net.au/news/feed/51120/rss.xml",
                                      encoding: "UTF-8"
                              },
                              {
                                      title: "Huffington Post",
                                      url: "https://www.feedspot.com/infiniterss.php?q=site:http%3A%2F%2Fwww.huffingtonpost.com.au%2Frss%2Findex.xml",
                               },
      
                      ],
                      showSourceTitle: true,
                      showPublishDate: true,
                      showDescription: false,
      
      posted in Troubleshooting
      R
      redkittens
    • RE: Newsfeed not displaying on MM

      @bhepler Oh my bad, that was a bad copy and paste and I’ve edited it for clarity. I just changed my config.js entry to what you recommended and unfortunately still no display. There must be an error in my newsfeed.js file. Thanks for your suggestion though

      posted in Troubleshooting
      R
      redkittens
    • RE: Newsfeed not displaying on MM

      @bhepler The end of the URL is there, you just have to scroll across due to its length. I wish that was the problem haha

      posted in Troubleshooting
      R
      redkittens
    • Newsfeed not displaying on MM

      The default newsfeed module is not displaying when I run MM, and doesn’t say it is loading. It used to work fine. I’ve since made made various edits and added an additional news source and it’s still not working. This is what it looks like in the config.js file:

                      {
                              module: "newsfeed",
                              position: "bottom_bar",
                              config: {
                                      feeds: [
                                              {
                                                      title: "ABC News",
                                                      url: "http://abc.net.au/news/feed/51120/rss.xml",
                                              },
                                              {
                                                      title: "Huffington Post",
                                                      url: "https://www.feedspot.com/infiniterss.php?q=site:http%3A%2F%2Fwww.huffingtonpost.com.au%2Frss%2Findex.xml",  
                                              },
                                      ],
                                      showSourceTitle: true,
                                      showPublishDate: true,
                              }
                      },
              ]
      
      };
      

      and this is what the default newsfeed module looks like:

      Module.register("newsfeed",{
      
              // Default module config.
              defaults: {
                      feeds:
                              {
                                      title: "ABC News",
                                      url: "http://abc.net.au/news/feed/51120/rss.xml",
                                      encoding: "UTF-8"
                              },
                              {
                                      title: "Huffington Post",
                                      url: "https://www.feedspot.com/infiniterss.php?q=site:http%3A%2F%2Fwww.huffingtonpost.com.au%2Frss%2Findex.xml",
                               },
      
                      ],
                      showSourceTitle: true,
                      showPublishDate: true,
                      showDescription: false,
      
      posted in Troubleshooting
      R
      redkittens
    • RE: Can't find default 'Compliments' module

      @sdetweil finally, thank you very much

      posted in Troubleshooting
      R
      redkittens
    • Can't find default 'Compliments' module

      The default compliments are running fine when I startup MM, but I want to edit them and cannot find them in the code. The compliments module in config.js only lists the following:

      {
              module: "compliments",
              position: "lower_third"
      },
      

      I can’t seem to figure out where they would be as every forum response to this is to look in config.js, and the README file in the modules directory wasn’t helpful for me. I’m an absolute beginner so if someone could explain this to me simply I would be very appreciative :slightly_smiling_face:

      posted in Troubleshooting
      R
      redkittens