Disabled Add Topic Button Disabled Post Reply Buttons
<!-- ********************************************** Locked Forums ********************************************** --> <style type="text/css"> /* hide Add Topic Link */ #ctl00_ContentPlaceHolder1_ctl01_lnkAddTopic { display: none; } /* hide Message tools (reply edit and delete links) */ .MessageToolsCell1 { display: none; } </style> <script src="http://www.axiomfiles.com/Files/258012/lockForum.js" type="text/javascript"></script> <script type="text/javascript"> $(document).ready(function(){ lockForum({ // Add more Forums separated by a pipe "|" (e.g. "Forum 1|Forum 2") NoNewTopicForum : "Instructions", NoRepliesForum : "General|Instructions", // The next variable is REQUIRED, do not change it at all accessLevel : "$block[userlevelname]" }); }) </script>
<!-- ********************************************** Locked Forums ********************************************** --> <style type="text/css"> /* hide Add Topic Link */ #ctl00_ContentPlaceHolder1_ctl01_lnkAddTopic { display: none; } /* hide Message tools (reply edit and delete links) */ .MessageToolsCell1 { display: none; } </style> <script src="http://www.axiomfiles.com/Files/258012/lockForum.js" type="text/javascript"></script> <script type="text/javascript"> $(document).ready(function(){ lockForum({ // access levels that override the lock (use lower case) accessOverride : "officer|super admin", // Add more Forums separated by a pipe "|" (e.g. "Forum 1|Forum 2") NoNewTopicForum : "Instructions", NoRepliesForum : "General|Instructions", // setting the next variables to true will completely remove the links // setting it to false will disable and fade out the links removeAddTopicLink : false, removeReplyLinks : false, // Options for links that aren't removed fadedOpacity : 0.5, AddTopicLinkTooltip : "No New Topics Allowed in this Forum", RepliesTooltip : "This Forum is Locked", // The next variable is REQUIRED, do not change it at all accessLevel : "$block[userlevelname]" }); }) </script>