By Andrew Boyce on Monday, 28 May 2018
Posted in General
Replies 3
Likes 0
Views 479
Votes 0
I would like to either completely remove the mobile menu from Easyblog toolbar or change the items in it to reflect the way i use the product.
it shows nothing there if the user is not logged in and to many options when they are logged in.
Hi there,

completely remove the mobile menu from Easyblog toolbar

You can remove them completely here .../components/com_easyblog/themes/wireframe/toolbar/default.php

change the items in it to reflect the way i use the product.

You can change them accordingly here .../components/com_easyblog/themes/wireframe/toolbar/mobile.sidebar.php

Please give it a try and see how it goes
·
Monday, 28 May 2018 10:04
·
0 Likes
·
0 Votes
·
0 Comments
·
ok thanks!
what part of the default.php file do i comment out to remove the mobile menu.
·
Wednesday, 30 May 2018 19:02
·
0 Likes
·
0 Votes
·
0 Comments
·
You may remove the codes below for the mobile menu from the file /components/com_easysocial/themes/wireframe/toolbar/default.php

[gist]
<?php if ($this->isMobile() || $this->isTablet()) { ?>
<div class="o-nav__item">
<a class="o-nav__link es-toolbar__link" href="javascript:void(0);" data-es-toolbar-toggle>
<i class="fa fa-bars"></i>
</a>
</div>
<?php } ?>
[/gist]
·
Wednesday, 30 May 2018 20:48
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post