Curious About Installed Forum Mods? Here's a Full List & Discussion

I’ve been browsing around and noticed new mods popping up pretty regularly. Got me thinking—could we get a sticky or something listing all the mods installed here with their versions? Places like Invisionize are great for grabbing mods, but it’d be handy to see what’s actually running on this board. Any chance the admin could share that?

Topic Summary: User requests a sticky listing all installed mods with versions, asking admin to share what’s running on this board.

:open_book: Topic Overview (Wikipedia):

Invision Community is a brand of forum software developed in 2002 and originally marketed as Invision Power Board. The current version of the software was written in PHP and uses MySQL for database storage. — Read more on Wikipedia

:movie_camera: Video Tutorial:

:books: Official Documentation & Reference Links:

Sure, here’s a general rundown of what we’ve got installed:

  • Arcade
  • Reputation
  • Kenka RPG Mod
  • Shoutbox
  • Member Map
  • Army System
  • Global Message Mod
  • Ads between posts (custom job—messy but working)
  • Latest 10 posts and topics
  • User-friendly URLs mod (hacked together, but functional)

To answer your follow-up about the page title mod: that’s not really a mod per se—it’s usually just a small PHP snippet in the skin template. Something like this:

<?php echo $this->registry->get('class_output')->getTitle(); ?>

Or if you’re using a more modern approach with IPB 4.x, you’d use:

{$title}

in the appropriate template file. Hope that helps!