MyBB Community Forums
Is this possible? - Printable Version

+- MyBB Community Forums (https://community.mybb.com)
+-- Forum: Extensions (https://community.mybb.com/forum-201.html)
+--- Forum: Plugins (https://community.mybb.com/forum-73.html)
+---- Forum: Plugin Requests (https://community.mybb.com/forum-65.html)
+---- Thread: Is this possible? (/thread-23967.html)



Is this possible? - xScopex - 2007-09-13

I want to make it so that oh the index where the category is it goes:
My category                           Threads 	Posts 	Last Post
Instead of
My category                           
Forum                    Threads 	   Posts 	Last Post
I have tried but it doesn't work any ideas?


RE: Is this possible? - LeX- - 2007-09-13

Open forumbit_depth1_cat

Find && Remove
<div><strong><a href="forumdisplay.php?fid={$forum['fid']}">{$forum['name']}</a></strong><br /><div class="smalltext">{$forum['description']}</div></div>

Find
<strong>{$lang->forumbit_forum}</strong>

Replace by
<div><strong><a href="forumdisplay.php?fid={$forum['fid']}">{$forum['name']}</a></strong><br /><div class="smalltext">{$forum['description']}</div></div>



RE: Is this possible? - xScopex - 2007-09-13

Sweet thanks. I never thought of doing it that way.