View Full Version : Anyone Know How To Change Forum Post Counts
club_krome
08-15-2002, 09:05 PM
does anyone know how to increase the # of posts and threads displayed on the home page
Xenon
08-15-2002, 10:32 PM
i don't see why you want to increas the post/thread count, but in your index.php you'll find this:
// get total posts
$countposts=$DB_site->query_first('SELECT COUNT(*) AS posts FROM post');
$totalposts=number_format($countposts['posts']);
$countthreads=$DB_site->query_first('SELECT COUNT(*) AS threads FROM thread');
$totalthreads=number_format($countthreads['threads']);
replace it with something like this:
// get total posts
$countposts=$DB_site->query_first('SELECT COUNT(*) AS posts FROM post');
$totalposts=number_format($countposts['posts']+xx);
$countthreads=$DB_site->query_first('SELECT COUNT(*) AS threads FROM thread');
$totalthreads=number_format($countthreads['threads']+yy);
vBulletin® v3.8.12 by vBS, Copyright ©2000-2025, vBulletin Solutions Inc.