Log in

View Full Version : Adding Comas to user postcounts, threadcounts and forum reply counts


Platinumgamer
01-29-2003, 02:40 AM
Hi,

I'm looking for a way to add comas to my users' postcounts and to my forums thread and reply counts(IE: 1,000 instead of 1000). I know it's done by filehacking as I was told this over at vB.com, so if someone could help me figure out how this is done, I'd be very appreciative.

Thanks for any help!

Logician
01-29-2003, 09:26 AM
I dont know what version you are running but it already exists in my 2.2.6..

You can either upgrade or apply this fix:

edit index.php, find:
$countthreads=$DB_site->query_first('SELECT COUNT(*) AS threads FROM thread');
after that add:

$numbermembers=number_format($numbersmembers['users']);
$totalposts=number_format($countposts['posts']);
$totalthreads=number_format($countthreads['threads']);


however if your board is too old I dont know if variable names will match.. If not simply replace the names in the template with these:
$numbermembers
$totalposts
$totalthreads

Logician
01-29-2003, 09:28 AM
oh sorry I guess I understand you wrongly? Which count in which page did you mean?

Platinumgamer
01-29-2003, 12:11 PM
I'm currently running 2.2.9;)

The counts I'm referring to are the Replies and Threads numbers shown on the forumhome and the number of posts a user has(if possible)

Thanks!

Platinumgamer
01-30-2003, 12:38 AM
Sorry for bumping this, but I really would like this hack if possible...

:o

mr e
01-30-2003, 02:18 AM
so do the same thing only to the different variables on the page you want

Logician
01-30-2003, 09:19 AM
I guess what you want is this:

edit index.php, find:

eval("\$forumbits .= \"".gettemplate("forumhome_forumbit_level$depth$tempext")."\";");

Replace it as:

$forum[threadcount]=number_format($forum[threadcount]);
$forum[replycount]=number_format($forum[replycount]);
eval("\$forumbits .= \"".gettemplate("forumhome_forumbit_level$depth$tempext")."\";");

Enjoy..

Platinumgamer
01-30-2003, 08:34 PM
Thanks Logician, it worked perfectly! :):)