MyBB Community Forums

Full Version: hide number of threads and post in index
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
how can i hide number of threads and post in index?
Open ./inc/functions_forumlist.php

Find:
				$posts = my_number_format($forum['posts']);
				$threads = my_number_format($forum['threads']);

Replace with:
				$posts = '-';
				$threads = '-';
i tried it but it display zeros in both threads and posts.
What? It's supposed to display a dash in place of a number, as if the board is pass protected..

oh yeah it works. Big Grin
thanks a lot