Fix the 'Top Poster' system

I think it’d be pretty great if ROBLOX took the time to fix or just remove the ‘Top Poster’ system from the ROBLOX forum. I mean, just to remove it doesn’t seem like it’d take very long.

Fix it by removing post count

site.ROBLOX.Forum:FindFirstChild(“Post Count”):remove()

The entire forum system needs to be thrown away and redone imo. The design, the rules, the features, it all needs to be completely redone.

This exact line of thought is why nothing actually gets done.

If you postpone everything to “whenever we do a big overhaul”, you leave the project in a static state with a bunch of small easily fixable things.

Realistically, who knows how long until that next big overhaul happens. It might be years from now, and for years we’ll have to put up with a bunch of features not working.

If someone just spends 1 day fixing up the top poster thing, we’d have that working feature THERE and existing for the X amount of years until the actual forum reform.

I also like to “push small things into the next big overhaul” but this kind of attitude can really be damaging in a longrun if those overhauls aren’t being pushed consistently and really quickly.

I’m not saying push it until the next overhaul, I’m saying we need an overhaul now. AFAIK there’s never even been an overhaul before.

Yeah but the overhaul takes a lot of time so they’re putting it off. Like they may have already fixed a lot of issues, but just haven’t released the new version because they don’t want to fix ‘X’ because it would take a long to fix ‘X’ even though everything else is done.

site.ROBLOX.Forum:FindFirstChild(“Post Count”):remove()[/quote]

Or we could use something that would actually work…

var elem = document.getElementsByClassName('normalTextSmaller'); for (var i = 0; i < elem.length; i++) { if (elem[i].innerText.substring(0,12) == "Total Posts:") { elem[i].parentNode.removeChild(elem[i]); } };