By Vlad on Tuesday, 14 October 2014
Posted in General Issues
Replies 5
Likes 0
Views 739
Votes 0
Hi
As you can see on picture, sidebar and toolbar have same categories. No point in that.
How do I rectify. I prefer the toolbar keep features.
Pls dont just do it but explain how to.
Thanks
please
·
Tuesday, 14 October 2014 13:59
·
0 Likes
·
0 Votes
·
0 Comments
·
Hello Vlad ,

Sorry for late reply to this,
I have checked in your screenshot, actually that was different like you point to the menu Easysocial toolbar and the left sidebar widget, if you click on the "Group" link from the menu Easysocial toolbar, it will bring to go to creation group page.
Check my first screenshot below.

If you click on the group from the left sidebar, it will only filter what group are you click.
Check my second screenshot below.
·
Tuesday, 14 October 2014 15:46
·
0 Likes
·
0 Votes
·
0 Comments
·
This is not what I was asking for. I wanted to get rid of the same titles from the side bar altogether, not create groups.
·
Tuesday, 14 October 2014 21:53
·
0 Likes
·
0 Votes
·
0 Comments
·
Also EVENTS and APS are duplicated. Not only groups.
·
Tuesday, 14 October 2014 21:56
·
0 Likes
·
0 Votes
·
0 Comments
·
Hello Vlad,

Sorry for late reply to this, because you asked me do explanation about this.
by the way, we have the setting to disable this "Group" and "Event" menu from your Easysocial toolbar, but when you disable it so the user unable to create event and group.
So what is the best solution for you is remove the following code from this file -> JoomlaFolder\components\com_easysocial\themes\frosty\toolbar\default.php

//LINE 147 until 161
<?php if( $this->config->get( 'groups.enabled' ) ){ ?>
<li class="<?php echo $view == 'groups' ? 'active' : '';?>">
<a href="<?php echo FRoute::groups();?>">
<?php echo JText::_( 'COM_EASYSOCIAL_TOOLBAR_PROFILE_GROUPS' );?>
</a>
</li>
<?php } ?>

<?php if( $this->config->get( 'events.enabled' ) ){ ?>
<li class="<?php echo $view == 'events' ? 'active' : '';?>">
<a href="<?php echo FRoute::events();?>">
<?php echo JText::_( 'COM_EASYSOCIAL_TOOLBAR_PROFILE_EVENTS' );?>
</a>
</li>
<?php } ?>

hope this help.
·
Tuesday, 14 October 2014 23:16
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post