How to get external RSS feed to nopCommerce

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.
13 years ago
Hi,

Currently I would like to stream news from feedzilla

http://news.feedzilla.com/en_us/headlines/business/materials-gold.rss?client_source=feed

Can someone show me how. Thanks
13 years ago
masterapiz wrote:
Hi,

Currently I would like to stream news from feedzilla

http://news.feedzilla.com/en_us/headlines/business/materials-gold.rss?client_source=feed

Can someone show me how. Thanks


See SEOHelper.GetNewsRssUrl() method (\Libraries\Nop.BusinessLogic\SEO\SEOHelper.cs). If you cannot find it, just open a solution in VS and try to search 'GetNewsRssUrl'
13 years ago
abcd_12345 wrote:
Hi,

Currently I would like to stream news from feedzilla

http://news.feedzilla.com/en_us/headlines/business/materials-gold.rss?client_source=feed

Can someone show me how. Thanks

See SEOHelper.GetNewsRssUrl() method (\Libraries\Nop.BusinessLogic\SEO\SEOHelper.cs). If you cannot find it, just open a solution in VS and try to search 'GetNewsRssUrl'


I found it, Try to change to
        public static string GetNewsRssUrl(int languageId)
        {
            //string url = CommonHelper.GetStoreLocation() + "NewsRSS.aspx?LanguageId=" + languageId.ToString();
            string url = "http://news.feedzilla.com/en_us/headlines/business/materials-gold.rss?client_source=feed";
            return url.ToLowerInvariant();
        }

but I dont see any diff
This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.