This is so easily fixed... it's been posted on the forums before but I'll repeat the process below since I can't find the URL that easily. SWSoft really shouldn't have to implement this, let them use their time for usefull stuff. I rather have less bugs than less icons.
Anyway, you can always download a skin from Plesk, edit the info.xml so that the skin has a different name, and modify the buttons.css file in the following dir:
\yourskin\css\main\
Replace any line that says:
background-image: url(../../images/btn_***-disabled_bg.gif);
with:
display:none; width:0px; height:0px;
-
So, for example, the following:
#bid-reboot-disabled {
background-image: url(../../images/btn_reboot-disabled_bg.gif);
}
would become:
#bid-reboot-disabled {
display:none; width:0px; height:0px;
}
This not only removes the icons, but also the text that's underneath them. Ofcourse you can apply this to all buttons, or only to the ones you want removed. So Cranky could change his ssh icon from:
#bid-sshterm-disabled {
background-image: url(../../images/btn_sshterm-disabled_bg.gif);
}
to:
#bid-sshterm-disabled {
display:none; width:0px; height:0px;
}
and the button would be gone
Enjoy the 'hax0ring'
