Georgesosk Posted October 25, 2020 Share Posted October 25, 2020 Hi, I am trying to remove the "View" filter on the left hand menu of supporttickets.php I tried using a hook, but I suppose I did something wrong as it didn't work: <?php use WHMCS\View\Menu\Item as MenuItem; add_hook('ClientAreaPrimaryNavbar', 1, function (MenuItem $primaryNavbar) { if (!is_null($primaryNavbar->getChild('Support'))) { $primaryNavbar->getChild('Support')->removeChild('View'); } }); Any thoughts would be appreciated. 0 Quote Link to comment Share on other sites More sharing options...
brian! Posted October 25, 2020 Share Posted October 25, 2020 3 hours ago, Georgesosk said: I tried using a hook, but I suppose I did something wrong as it didn't work: it wouldn't help that you're using a Navbar hook, when you should be using a Sidebar hook instead. 🙂 <?php use WHMCS\View\Menu\Item as MenuItem; add_hook('ClientAreaPrimarySidebar', 1, function(MenuItem $primarySidebar) { if (!is_null($primarySidebar->getChild('Ticket List Status Filter'))) { $primarySidebar->removeChild('Ticket List Status Filter'); } }); 0 Quote Link to comment Share on other sites More sharing options...
bear Posted October 25, 2020 Share Posted October 25, 2020 Left side is not the primary, it's the secondary. Try this? <?php use WHMCS\View\Menu\Item as MenuItem; add_hook('ClientAreaSecondarySidebar', 1, function(MenuItem $secondarySidebar) { if(!is_null($secondarySidebar->getChild('Support'))){ $secondarySidebar->getChild('Support')->removeChild('View'); } }); Interesting. I posted the above hours ago, and it's not in the thread. See if it works this time. 0 Quote Link to comment Share on other sites More sharing options...
brian! Posted October 26, 2020 Share Posted October 26, 2020 19 hours ago, bear said: Left side is not the primary, it's the secondary. huh? with Six, all sidebars are shown on the left (if you had a RTL template, they'd be on the right) - but Six certainly wouldn't split sidebars with primary on the right and secondary on the left by default. 0 Quote Link to comment Share on other sites More sharing options...
bear Posted October 26, 2020 Share Posted October 26, 2020 So glad I posted it. 😉 Going to go skulk off now 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.