By Teleperformance Germany S.à.r.l. & Co. KG on Wednesday, 05 April 2017
Posted in Technical Issues
Likes 0
Views 421
Votes 0
Hi,

can we customize the black bar in the screen shot?

1.)
We would like to hide the home or pages button as the home button is dublicated (already in our main menu) and the pages aren´t yet used

2.)
Can we also disable the whole black bar for some entries? For example we would like to show only an event here, but without the black bar on top.
Hello,

If you already have your own menu implementation, I would suggest that you disable the toolbar. You can turn this off as shown in the settings here, http://take.ms/2vtlnr

If you would like to customize the toolbar, you could edit the theme file which is located in /components/com_easysocial/themes/wireframe/toolbar/default.php . You could remove the following codes from the file:

[gist]
<?php if ($dashboard) { ?>
<li class="<?php echo $view == 'dashboard' ? 'is-active' : '';?> is-home">
<a href="<?php echo ESR::dashboard();?>" class="es-navbar__footer-link">
<i class="fa fa-home"></i>
<span>
<?php echo JText::_('COM_EASYSOCIAL_TOOLBAR_HOME'); ?>
</span>
</a>
</li>
<?php } ?>
[/gist]

[gist]
<?php if ($this->config->get('pages.enabled')) { ?>
<li class="<?php echo $view == 'pages' || ($view == 'apps' && $type == 'page') ? 'is-active' : '';?>">
<a href="<?php echo ESR::pages();?>" class="es-navbar__footer-link">
<i class="fa fa-columns"></i>
<span>
<?php echo JText::_('COM_EASYSOCIAL_TOOLBAR_PROFILE_PAGES'); ?>
</span>
</a>
</li>
<?php } ?>
[/gist]
·
Wednesday, 05 April 2017 22:31
·
0 Likes
·
0 Votes
·
0 Comments
·
Great tip. I started to use my own menu here. Thanks for the idea
·
Friday, 21 April 2017 07:02
·
0 Likes
·
0 Votes
·
0 Comments
·
Hi there,

You are most welcome. Glad to hear that your issue has been resolved now.

As a gentle reminder, kindly start a new thread if you have any other issue in the future so it will be easier for us to manage your inquiry. I will lock and mark this thread as resolved.
·
Friday, 21 April 2017 09:54
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post