cosmin Posted April 12, 2016 Share Posted April 12, 2016 Hello! I want to remove the left bar (but ONLY in order form, in client area must remain) and use the space for forms. I use the hooks <?php use WHMCS\View\Menu\Item as MenuItem; add_hook('ClientAreaSecondarySidebar', 1, function (MenuItem $secondarySidebar) { $secondarySidebar->removeChild('Actions'); }); and <?php use WHMCS\View\Menu\Item as MenuItem; add_hook('ClientAreaSecondarySidebar', 1, function (MenuItem $secondarySidebar) { $secondarySidebar->removeChild('Categories'); }); to remove the left bars and use this space for forms. Like in atached picture. How can I do that? Many thanks! 0 Quote Link to comment Share on other sites More sharing options...
brian! Posted April 12, 2016 Share Posted April 12, 2016 those hooks need tweaking, and in order to move the cart to full-width, you'll need to modify the templates. http://forum.whmcs.com/showthread.php?107470-How-to-remove-the-side-menu-here http://forum.whmcs.com/showthread.php?106435-how-to-remove-the-left-column-in-some-page-whmcs-6-1 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.