Jump to content

How to remove a side bar panel in the knowledge base section?


Web Host Pro

Recommended Posts

Hi,

 

1. I'm trying to remove the side bar tags panel section off the knowledge base page here:

 

https://webhost.pro/account/knowledgebase.php

 

I want to keep tags for searching, just not list them on the side bar.

 

2. Also I would like to keep the search bar on each page of the knowledge base section, it removes once you click anything off the front knowledge base page.

 

Thanks!

Link to comment
Share on other sites

1. I'm trying to remove the side bar tags panel section off the knowledge base page here:

https://webhost.pro/account/knowledgebase.php

I want to keep tags for searching, just not list them on the side bar.

it should only need a simple hook to remove it...

 

<?php

use WHMCS\View\Menu\Item as MenuItem;

add_hook('ClientAreaSecondarySidebar', 1, function(MenuItem $secondarySidebar)
{
   if (!is_null($secondarySidebar->getChild('Support Knowledgebase Tag Cloud'))) {
               $secondarySidebar->removeChild('Support Knowledgebase Tag Cloud');
   }
});

 

2. Also I would like to keep the search bar on each page of the knowledge base section, it removes once you click anything off the front knowledge base page.

you should only need to copy the <form> block of code from knowledgebase.tpl to knowledgebasearticle.tpl :idea:

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.

×
×
  • 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