RSS feed

RSS feed [Paid] 3.1

No permission to buy ($35.00)

AndyB

Well-known member
AndyB submitted a new resource:

RSS feed - Adds RSS feed widget.

Premium upgrade:

This XF2 add-on along with the entire collection can be purchased for $25.00 USD. Your Premium upgrade will allow you to download as many XF2 add-ons as you like for one year. Please see the entire collection located in the Resources area at this URL:

https://www.xf2addons.com/

Note: all my XF1 add-ons are still 100% free and are supported by donations.

Description:

Adds RSS feed widget.

Easily show RSS feeds from other web sites or your own...

Read more about this resource...
 
I keep forgetting to install this! It's actually a great idea! Be awesome if we had something like this to make single forums posts for single news items!
 
I keep forgetting to install this! It's actually a great idea! Be awesome if we had something like this to make single forums posts for single news items!
There is mate...in your Admin go to Forums -> RSS Feed Importer

You can enter an RSS feed and select which forum you want XF to automatically post threads for each RSS news item. I have even set up a user for each RSS feed news source:
1.webp
 
BTW, I have sorted my RSS into columns:

See: https://cafesaxophone.com/pages/taming-the-saxophone/

(beware the listHeap class is used elsewhere in xenforo so check for other unexpected results

CSS:
ul.listHeap
{
-webkit-column-count: 4;
-moz-column-count: 4;
column-count: 4;
column-gap: 10px;
}


@media (max-width: 1023px) {

ul.listHeap
{
-webkit-column-count: 3;
-moz-column-count: 3;
column-count: 3;
column-gap: 10px;
}


}

@media (max-width: 799px) {

ul.listHeap
{
-webkit-column-count: 2;
-moz-column-count: 2;
column-count: 2;
column-gap: 10px;
}


}

@media (max-width: 499px) {

ul.listHeap
{
-webkit-column-count: 1;
-moz-column-count: 1;
column-count: 1;

}
}
 
Last edited:
One question from my side:
Leaving date blank and limiting description to zero, would mean there is only title of RSS in list? No disturbing lines between the feed titles? Or is my idea not possible?
 
Does this add on to the existing widget system or is it more independent? Does it allow thumbs now or multiple rss widget blocks?
 
Top Bottom