vForums Support > Programming & Coding :: Code Requests & Support :: > Remove delete forum button

Remove delete forum button - Posted By Nick (nickb) on 5th Jul 09 at 4:26am
Ok the "Delete forum" code removes the "other" category in the admin panel, it also removes the Forum Stats link.

Code:
 
  1. <style type="text/css">
  2. <!--
  3. #delete_forum{
  4. display: none;
  5. }
  6. //-->
  7. </style>
  8.  
 




and this is what it looks like with the code:
Image

and this is what it looks like without the code:
Image


if there is a fix to this please fix away:)

Thanks.

Re: Remove delete forum button - Posted By Michael (wrighty) on 5th Jul 09 at 11:42am
What do you want it to remove? {Unsure}

Plus, fix the image! {Tongue Out}

Re: Remove delete forum button - Posted By Nick (nickb) on 5th Jul 09 at 2:56pm
I only want the "Delete forum" link removed but it removes the whole "other" category from the admin panel.

There was an issue when I pasted the image links. {Tongue Out}

Re: Remove delete forum button - Posted By Michael (wrighty) on 5th Jul 09 at 3:31pm
Try this code:

Main Footer:

Code:
 
  1. <script>
  2. get('li', 'tag', get('delete_forum', 'id'))[1].style.display = 'none';  
  3. </script>
 

Re: Remove delete forum button - Posted By Nick (nickb) on 5th Jul 09 at 8:48pm
Thanks. {Smile} That worked!