MyBB Community Forums

Full Version: Quick and easy mozilla RSS buttons
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
To add RSS subscription to your forums in mozilla simply make the following additions to index and forumdisplay templates below $headerinclude and above the closing body tag

For index:
<link rel="alternate" type="application/rss+xml" href="$settings[bburl]/rss.php?limit=15" title="$settings[bbname]" />

For forumdisplay:
<link rel="alternate" type="application/rss+xml" href="$settings[bburl]/rss.php?fid=$foruminfo[fid]&limit=15" title="$settings[bbname]: $foruminfo[name]" />
Already got this on my forum, just to say you can change &limit=15 to however many threads you want to show Smile
loftx - thanks!
what exactly does that do ?
Adds a button at the bottom right of Mozilla Firefox that allows a user to subscribe to the entire forum or a particlaur forum depending on what page you on
Thanks, just used this.