MyBB Community Forums
Need forum not shown on index, but live still - 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: Need forum not shown on index, but live still (/thread-25611.html)



Need forum not shown on index, but live still - Zalaki - 2007-11-14

I need a category and all its forums to be live, but not visible on the index of the entire websites forums.

is this possible?

like so:

Category: Entertainment
- Forum: Movies
- Forum: Games
Category: Marketplace (not seen from index but still there)
- Forum: Domains
- Forum: Websites

So that I can link to that area in my navigation instead of it being show on the index, I hope this is possible..

Thanks mucho!


RE: Need forum not shown on index, but live still - blueparukia - 2007-11-14

The option for this should be in forum permissions. Apply it to the category...

BP


RE: Need forum not shown on index, but live still - Zalaki - 2007-11-14

whats Permissions have to do with anything? im not keeping it hidden from any certain group.. or in that way...

I need ONE category hidden but still open to being posted in, if linked to that category via PM or what not..


RE: Need forum not shown on index, but live still - blueparukia - 2007-11-14

When you create the forum/category, set "View" for every user group to "no". That will stop everyone from seeing it, keep "Forum is active" and "Forum is Open" set to "yes". That way it will still be accessible via direct URL.

BP


RE: Need forum not shown on index, but live still - Zalaki - 2007-11-14

I tried that... just now and it says I dont have permission to view it..


RE: Need forum not shown on index, but live still - LeX- - 2007-11-17

Open ./inc/functions_forumlist.php

Find
			$plugins->run_hooks("build_forumbits_forum");

Add above
			$fids = array('x','y','z');
			if(is_array($fids))		
			{
				if(in_array($forum['fid'], $fids))
				{
					continue;
				}
			}

Change x,y,z into FIDs or just add one array('x'); of the Forums you don't want in the list.


RE: Need forum not shown on index, but live still - Zalaki - 2007-11-20

Thanks so much Lex, it worked Big Grin