Jump to content

Sidebar customization in Client Area


rabijit

Recommended Posts

what I would suggest to do is view the source of the page, copy the entire <div> code block of the sidebar you want to move and then paste that code in the template for the right hand side - clientareaproductdetails.tpl ?

 

you might have to play with the <div> formatting and/or css to get the position correct, but it will function correctly.

 

then you would write an action hook to remove this sidebar from the left hand side - I know for certain that the hook would only remove this sidebar and not the one you've copied to the right. :idea:

Link to comment
Share on other sites

this should work... :idea:

 

<?php

use WHMCS\View\Menu\Item as MenuItem;

add_hook('ClientAreaPrimarySidebar', 1, function(MenuItem $primarySidebar)
{
   if (!is_null($primarySidebar->getChild('Domain Details Management'))) {
            $primarySidebar->removeChild('Domain Details Management');
   }
});

Link to comment
Share on other sites

no no, to print secondary sidebar

do you mean is there a hook to display a sidebar outside of sidebar.tpl ? not really - pasting the <div> code into the template would be the simplest way.

 

you could use a clientarepage hook to pass the code to a Smarty variable and then output that Smarty variable in the template, but you'd have to edit the template anyway to display the Smarty variable where you want it - so you might as well add the code directly!

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