By GRANT HUMMEL on Sunday, 03 February 2019
Posted in General Issues
Replies 3
Likes 0
Views 509
Votes 0
Hello. I'd like hide the sidebar in the admin area. Ideally just for certain user groups but if need be to everyone. I'm not able to find where the sidebar is called in the code. Can you point me in the right direction please? We're currently on 3.7.1 (see below)
Hey there,

I am really sorry for the delay of this reply as it is a weekend for us here.

Can you provide us some screenshot which admin area sidebar you referring to?
·
Sunday, 03 February 2019 09:11
·
0 Likes
·
0 Votes
·
0 Comments
·
Attached.
Thank you
·
Sunday, 03 February 2019 09:30
·
0 Likes
·
0 Votes
·
0 Comments
·
Hey Grant,

I am really sorry for delayed response due to weekend.

To remove/hide admin sidebar, you need to do change in below mentioned file path.
root/components/com_payplans/xiframework/base/abstract/view.php, near line no. 299 find below mentioned code.
[gist type="php"]
protected function _showHeader()
{
// add admin toolbar
if($this->_isAdmin){
$this->_adminToolbar();
$this->_adminSubmenu();
}
return '';
}
[/gist]

Remove $this->_adminSubmenu(); from code to hide admin toolbar.

Let me know if you have any query.
·
Monday, 04 February 2019 11:31
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post