Vanilla 1 is no longer supported or maintained. If you need a copy, you can get it here.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
How to do this?
I want to have a category that everyone can post to, but that you dont see on the category list when reading comments.
This is because I have made half an extension that lists all files that has been uploaded with the attachment add-on on a seperate page. If someone wants to upload a file to the server, but not under a specific discussion (ie. just wants file hosting), they would post it as a new discussion under the "Filehost" category, where it wont clutter up the discussions page.
0
This discussion has been closed.
Comments
Hiding categories and still keeping posting privelages # 8
I guess its time to build a admin control panel and upload this extension :-)
if ($Category->CategoryID != '10') {
before
$PanelString .= ' <li style="margin-bottom: 2px;"><span id="Category_'.$Category->CategoryID.'">'.GetDynamicCheckBox("Category_".$Category->CategoryID, 1, FlipBool($Category->Blocked), "ToggleCategoryFilter('".$Context->Configuration['WEB_ROOT']."ajax/blockcategory.php', $Category->CategoryID, ".FlipBool($Category->Blocked).", 'Category_".$Category->CategoryID."', '".$SessionPostBackKey."', ".$Context->Configuration['CATEGORY_FILTER_AUTOREFRESH'].");", $Category->Name, " style=\"margin-right: 3px;\"") .'</span></li>';
and after
}