Maybe someone is interessted in displaying a Articles count on Forumhome...
Just search for:
// get newest member
above it place:
PHP Code:
// Tutorials
$counttutorials = $DB_site->query_first("SELECT COUNT(*) AS artid FROM vbArticles_content WHERE valid='1'");
$totaltuts = number_format($counttutorials['artid']);
Than open your forumhome template and place
Total Articles: $totaltuts anywhere you like.