Stu340 Posted April 15, 2019 Share Posted April 15, 2019 I'm trying to remove some buttons within the actions tab of the client area but can't find them, these are for the link to customers servers in TCAdmin. <a menuitemname="Custom Module Button Stop" href="/clientarea.php?action=productdetails&id=37777&modop=custom&a=Stop" class="list-group-item active" id="Primary_Sidebar-Service_Details_Actions-Custom_Module_Button_Stop"> Stop </a> <a menuitemname="Custom Module Button Start" href="/clientarea.php?action=productdetails&id=37777&modop=custom&a=Start" class="list-group-item" id="Primary_Sidebar-Service_Details_Actions-Custom_Module_Button_Start"> Start </a> <a menuitemname="Custom Module Button Restart" href="/clientarea.php?action=productdetails&id=37777&modop=custom&a=Restart" class="list-group-item" id="Primary_Sidebar-Service_Details_Actions-Custom_Module_Button_Restart"> Restart </a> These three in particular. Thanks in advance. 0 Quote Link to comment Share on other sites More sharing options...
brian! Posted April 16, 2019 Share Posted April 16, 2019 14 hours ago, Stu340 said: I'm trying to remove some buttons within the actions tab of the client area but can't find them, these are for the link to customers servers in TCAdmin. even if you couldn't do it with a hook, you should still be able to hide them using css in a custom.css file... #Primary_Sidebar-Service_Details_Actions-Custom_Module_Button_Stop, #Primary_Sidebar-Service_Details_Actions-Custom_Module_Button_Start, #Primary_Sidebar-Service_Details_Actions-Custom_Module_Button_Restart {display: none;} 0 Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.