Read the statement by Michael Teeuw here.
Newsfeed not loading on display properly
-
Hi,
My syntax seems to be fine, but am getting the comments within Terminal-
Create new news fetcher for url: http://www.nytimes.com/services/xml/rss/nyt/HomePage.xml - Interval: 300000
Create new news fetcher for url: http://feeds.bbci.co.uk/news/video_and_audio/news_front_page/rss.xml?edition=uk - Interval: 300000I used the exact code from the newsfeed module. I tried getting a new rss-link from bbc and got the same comment anyways.
Any ideas would be greatly appreciated!
-
Can you describe how it is “not loading on display properly?”
-
This post is deleted! -
Ok, so, disable or remove the stocks module entry because we know that’s not working anyway.
Then edit your newsfeed entry to look like this. You can edit out my stuff and/or add your BBS news in the same way
{ module: 'newsfeed', position: 'bottom_bar', config: { feeds: [ { title: "NASA", url: "https://www.nasa.gov/rss/dyn/solar_system.rss" }, { title: "Reuters Science News", url: "http://feeds.reuters.com/reuters/scienceNews" }, { title: "New York Times", url: "http://www.nytimes.com/services/xml/rss/nyt/HomePage.xml" }, { title: "BBC World News", url: "http://feeds.bbci.co.uk/news/world/us_and_canada/rss.xml" }, ], showSourceTitle: true, showPublishDate: true } } ] }; /*************** DO NOT EDIT THE LINE BELOW ***************/ if (typeof module !== 'undefined') {module.exports = config;}
-
finally worked! I had to comment out the google maps traffic module too
thanks! -
Great! :-)