Jump to content

WebNest

Member
  • Posts

    5
  • Joined

  • Last visited

Everything posted by WebNest

  1. Please could you advise how to remove the sidebars from the all client rea pages as well as using full width please?
  2. Hey, Any suggestions would be really helpful. Sorry for the late posting I have had to wait for my posts to be approved. Thank you
  3. This may be a little late but if you cannot contact the seller or host you got the license from then. I would suggest purchasing a license from whmcs.com which you will have full control over and if you decide again to move your whmcs installation location again you can go in and re issue the license so you don't get this error again.
  4. Welcome to Web Nest. Please feel free to take a look and any feedback is appreciated. Web Nest Some work is still being carried out, So not entirely finished yet. Thank you
  5. Hello, So I have gone ahead and created a hook to remove the side menu during checkout. <?php use WHMCS\View\Menu\Item as MenuItem; add_hook('ClientAreaSecondarySidebar', 1, function(MenuItem $secondarySidebar) { $client = Menu::context('client'); if (is_null($client) and (!is_null($secondarySidebar->getChild('Categories')))) { $secondarySidebar->removeChild('Categories'); } if (is_null($client) and (!is_null($secondarySidebar->getChild('Actions')))) { $secondarySidebar->removeChild('Actions'); } if (is_null($client) and (!is_null($secondarySidebar->getChild('Choose Currency')))) { $secondarySidebar->removeChild('Choose Currency'); } }); The only issue I have come across though is that the rest of the checkout still uses the right hand side of the page. I have looked within the standard_cart directory and cannot find anything to change this any ideas on how to complete this please? Thank you
×
×
  • 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