Add-on Reddit Style Feed (not nested posts)

Disciple of Nagash

Active member
Hi,

I came across this forum and I can't tell what software it's on, but it has this feed which I think works really well for enticing users who regularly use reddit: https://www.bugmansbrewery.com/

I don't believe XF has this as default, is there an addon that does this? I don't want the nested replies/posts addons I've already seen, it's just this feed view across all forums etc.

Cheers
 
This doesn't have a filter for content types. Click on Albums on the example site to see what I mean.
 
Hey, that looks brilliant - I'm not the most techie, do my mind explaining what you did to get your layout like that with the referenced addon?

It's really just these three add-ons:

You can make that layout mostly without any customizations, just add whatever tabs you want to have in the Admin CP and all the options are there. While you can make any tab the default tab, the forums tab always shows first. I got around that with this bit of CSS.

Code:
.block-forumListTabs .forumListTabs-tabs .hScroller-scroll {
    display: flex;

    #forumListTabs-forums {
        order: 4;
    }
}

The infinite scrolling part is one of my add-ons. It doesn't come default. If you don't want infinite scrolling, it does allow you to load more content sequentially.
 
Last edited:
I see. The Newsfeed is not available to guests. There doesn't seem to be a an overview of all new content available to guests. Which is what Flarum site above has.
 
I see. The Newsfeed is not available to guests. There doesn't seem to be a an overview of all new content available to guests. Which is what Flarum site above has.

It's literally all configurable. You can designate what tabs show to who and how they're set up. That's just how I did it. I added a guest tab to view it so you can see.

I wanted the latest threads on the homepage. And then I use the activity tab as a sort of spy and it will show literally everything users are doing. New threads, replying, reactions, changing their avatar, etc.

You can even use a custom template for how the content is shown. It's very advanced. @Painbaker did an amazing job.

Screenshot 2025-10-22 at 11-44-15 Edit tab Activity altBoards Gaming Forum - Admin control pa...webp
 
Is it possible to hide the snippets and reaction entries?

Screenshot 2025-10-22 at 11-55-29 Edit tab Activity altBoards Gaming Forum - Admin control pa...webp

Idk about snippets, but I know you can hide the reactions. If you type in insert, it will only show the inserted content. Leave out reactions and it won't show those. Maybe @Painbaker can explain that part a bit better and what options are available.

I do know you can make a custom template and probably leave the snippet portion out.

Edit: CSS solution

Code:
.block-forumListTabs .contentRow-snippet { // Across all tabs
    display: none;
}

OR

#js-forumListTab-TABID .contentRow-snippet { // target specific tab
    display: none;
}
 
Last edited:
Back
Top Bottom