@canadrian
{
module: "newsfeed",
position: "upper_third",
config: {
feeds: [
{
title: "The Hindu - National",
url: "https://www.thehindu.com/news/national/feeder/default.rss"
},
{
title: "Times of India - National",
url: "https://timesofindia.indiatimes.com/rssfeeds/-2128936835.cms"
},
],
showSourceTitle: true,
showPublishDate: true,
broadcastNewsFeeds: true,
broadcastNewsUpdates: true,
hideLoading: true,
showDescription: true,
updateInterval: 45000
}
},
This module is for one row of news feed ! and it will show feeds from the above two links (in my case National news The Hindu & Times of India)
You may add more feed links if required.
Now, if you want to display a new row for the news, configure it as a new module with exact same name as of news feed. For eg. I have added international news feed
{
module: "newsfeed",
position: "upper_third",
config: {
feeds: [
{
title: "The Hindu - International",
url: "https://www.thehindu.com/news/international/feeder/default.rss"
},
{
title: "Times of India - International",
url: "https://timesofindia.indiatimes.com/rssfeeds/296589292.cms"
},
],
showSourceTitle: true,
showPublishDate: true,
broadcastNewsFeeds: true,
broadcastNewsUpdates: true,
hideLoading: true,
showDescription: true,
updateInterval: 45000
}
},
Keep in mind that the sequence of the rows will be according to the module position ie. if the News feed for national news is above international news. The First row would be of National news followed by International News.
Hope it helps !