Georgesosk Posted July 26, 2020 Share Posted July 26, 2020 Hi, I'm looking to hide (or remove) the ticket status for clients from viewticket.php, supporttickets.php and clientarea.php How can this be done? Many thanks. 0 Quote Link to comment Share on other sites More sharing options...
Georgesosk Posted August 14, 2020 Author Share Posted August 14, 2020 Is this impossible? 0 Quote Link to comment Share on other sites More sharing options...
DennisHermannsen Posted August 14, 2020 Share Posted August 14, 2020 The easiest way would to just hide them using CSS. Otherwise, you should do it using hooks - but it's going to be a bit tricky in this case. 0 Quote Link to comment Share on other sites More sharing options...
brian! Posted August 15, 2020 Share Posted August 15, 2020 12 hours ago, DennisHermannsen said: The easiest way would to just hide them using CSS. i'd agree with Dennis on this - if it were Six, you could hide the sidebar label in viewticket, and the label in the Tickets homepagepanel using CSS.... #Primary_Sidebar-Ticket_Information-Subject span {display: none;} [menuitemname="Recent Support Tickets"] label {display: none;} using CSS on the supporttickets table would be trickier - the following should work, but if it were me, i'd probably just edit the template! 🙂 #tableTicketsList thead th:nth-child(3) {display: none;} #tableTicketsList tbody td:nth-child(3) {display: none;} if it's a custom template, then using CSS should still work, but the classes and IDs might not necessarily be the same as those used with Six. 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.