Jump to content

Remove Item in SecondaryMenu - Hook


Craft

Recommended Posts

Hi guys..

I would like to hide/remove this item (Upgrade/Downgrade Options) from the secondary menu using hooks (Find the attached screenshot).

2067079483_RemoveChild.thumb.png.60da6c79b237588fb7fd8ed45bda65cf.png

 

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?

Link to comment
Share on other sites

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

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use & Guidelines and understand your posts will initially be pre-moderated