Forums

Join
bbPress Support ForumsPluginshidden forum

Info

hidden forum

  1. Sorry for my english, how can someone explain to me how the plug-hidden forum?
    How can I become a forum hidden?
    Thank you

  2. You can download and install the plugin here!
    http://bbpress.org/plugins/topic/hidden-forums/

    Installation instructions are here:
    http://bbpress.org/plugins/topic/hidden-forums/installation/

  3. This is ok! I understand that I must change the file forum.php-hidden at the beginning.
    But can I have an example?
    If the forum that I want to hide it id = 5, what I write?
    Thank you

  4. This will hide forum #5 and only allow keymaster,administrator, or moderator to see it.

    $hidden_forums['hidden_forums']=array(5);	// hide these forums, list by comma seperated number
    
    $hidden_forums['allow_roles']['all_forums']=array('keymaster');		// these roles can always see ALL forums regardless
    $hidden_forums['allow_roles'][5]=array('administrator','moderator');	// exact formal role name, *not* ability
  5. Do you want to hide the forum from everyone? Then you can use this:

    $hidden_forums['hidden_forums']=array(5); // hide these forums, list by comma seperated number

    If you want certain people to be able to access the forum, I believe this should work:

    * If they are all adminstrators or moderators, you can use this: $hidden_forums['allow_roles'][5]=array('administrator','moderator');
    * If you want only certain users (say, userID numbers 10 and 11) to be able to access forum #5, you can use this: $hidden_forums['allow_users'][5]=array(10,11);

    Hope that helps...

  6. Oops, ignore what I wrote - ck would know best, since she wrote the plugin!

  7. :D oh thank you....johnhiler and _ck_

  8. You must log in to post.