By Gene Teigland on Wednesday, 01 July 2015
Posted in General Issues
Replies 2
Likes 0
Views 627
Votes 0
Can't find the setting to remove some of the menu items from the ES toolbar.

http://www.awesomescreenshot.com/image/369535/c5c0ce73445ed1b0766838f02a5f03b4
I could be wrong, but I think that the only way to do this is via core file edit.

I did it by editing components > com_easysocial/themes/frosty/toolbar/default.php

Near the bottom of the file are the toolbar menu items. Just comment out the ones that you don't need. e.g.


<!--
<?php if( $this->config->get( 'points.enabled' ) ){ ?>
<li class="<?php echo $view == 'points' ? 'active' : '';?>">
<a href="<?php echo FRoute::points( array( 'layout' => 'history' , 'userid' => $this->my->getAlias() ) );?>">
<?php echo JText::_( 'COM_EASYSOCIAL_TOOLBAR_PROFILE_POINTS_HISTORY' );?>
</a>
</li>
<?php } ?>

-->


will get rid of the points history menu item.

Hope this helps

Paul
·
Wednesday, 01 July 2015 03:25
·
0 Likes
·
0 Votes
·
0 Comments
·
Hello Paul,

Thanks for the helps.

Gene,

If you want to disable the menu display on the toolbar, you can follow Paul's method by editing the toolbar core file of easysocial. Another way is to disable the features directly from backend > easysocial > settings > followers (for example). If the feature is disabled, the menu from the toolbar will also get disabled. Hope these help.
·
Wednesday, 01 July 2015 11:04
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post