Craft Posted October 26, 2020 Share Posted October 26, 2020 Hi guys.. I would like to hide/remove this item (Upgrade/Downgrade Options) from the secondary menu using hooks (Find the attached screenshot). I tried to use the following code but it doesn't work. add_hook('ClientAreaSecondarySidebar', 1, function(MenuItem $secondarySidebar) { if (!is_null($secondarySidebar->getChild('Service Details Actions'))) { $secondarySidebar->getChild('Service Details Actions')->removeChild('Upgrade/Downgrade Options'); } }); Any suggestions? 0 Quote Link to comment Share on other sites More sharing options...
brian! Posted October 26, 2020 Share Posted October 26, 2020 12 minutes ago, Craft said: Any suggestions? it's a PrimarySidebar rather than a SecondarySidebar. 🙂 a non-coding way to do this would be to untick the "Configurable Options" checkbox in the "Upgrades" tab to each applicable product in the admin area products/services pages. https://docs.whmcs.com/Products_and_Services#Upgrades 1 Quote Link to comment Share on other sites More sharing options...
Craft Posted October 27, 2020 Author Share Posted October 27, 2020 20 hours ago, brian! said: it's a PrimarySidebar rather than a SecondarySidebar. 🙂 a non-coding way to do this would be to untick the "Configurable Options" checkbox in the "Upgrades" tab to each applicable product in the admin area products/services pages. https://docs.whmcs.com/Products_and_Services#Upgrades Ohh, okay. Thank you 🙂 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.