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.
Removing block category option
Is there a simple way to remove the "block category" option from the category page. I'm not displaying my discussion tab so that option will only create confusion amoung users.
0
This discussion has been closed.
Comments
li.CategoryOptions, li.CategoryOptions a { display: none; }
Or add this to conf/language.php (you can look for other words to change by looking in languages/english/definitions.php):
$Context->Dictionary['Options'] = ''; $Context->Dictionary['BlockCategory'] = '';
Or my preferred, but most complicated, method--go into the themes folder, copy categories.php into the vanilla folder inside the themes folder, (this way it will stay safe if you update vanilla) and remove lines 29-40, starting with IF and ending with }. You will see the block category stuff inside that block.