By Bruno Falissard on Monday, 24 April 2017
Posted in General Issues
Replies 5
Likes 0
Views 135
Votes 0
Hello,

I would like to show all the groups in the sidebar and not to have the "show more groups" button. I am having a hard time to find the right way to do so.

Any help?

Thank you in advance.
Hello Bruno,

Are you referring to the profile page or the dashboard page? By the way, showing all groups might be a little too heavy on the page if the user has a lot of groups eh?
·
Monday, 24 April 2017 21:09
·
0 Likes
·
0 Votes
·
0 Comments
·
I am referring to the Dashboard page ! Yes it may be ! We will see, but just would like to be able to perform it !
·
Monday, 24 April 2017 23:44
·
0 Likes
·
0 Votes
·
0 Comments
·
Hello Bruno,

This is what you can do, edit the file /components/com_easyblog/themes/wireframe/dashboard/default/default.php and at line 244, remove the codes below:

[gist]
<?php if ($showMoreGroups) { ?>
<div class="es-side-widget__filter">
<div>
<a href="javascript:void(0);" class="btn btn-sm es-side-widget-btn-showmore" data-clusters-showall >
<i class="i-chevron i-chevron--down t-lg-mr--sm"></i> <?php echo JText::_('COM_EASYSOCIAL_DASHBOARD_SIDEBAR_SHOW_MORE_GROUPS'); ?>
</a>
</div>
</div>
<?php } ?>
[/gist]

Then, go to Settings > Users > Layout, set a ridiculously high value for the total groups to display, http://take.ms/Iq4Ub . Say, 99999
·
Monday, 24 April 2017 23:51
·
0 Likes
·
0 Votes
·
0 Comments
·
Hello Bruno,

This is what you can do, edit the file /components/com_easyblog/themes/wireframe/dashboard/default/default.php and at line 244, remove the codes below:

[gist]
<?php if ($showMoreGroups) { ?>
<div class="es-side-widget__filter">
<div>
<a href="javascript:void(0);" class="btn btn-sm es-side-widget-btn-showmore" data-clusters-showall >
<i class="i-chevron i-chevron--down t-lg-mr--sm"></i> <?php echo JText::_('COM_EASYSOCIAL_DASHBOARD_SIDEBAR_SHOW_MORE_GROUPS'); ?>
</a>
</div>
</div>
<?php } ?>
[/gist]

Then, go to Settings > Users > Layout, set a ridiculously high value for the total groups to display, http://take.ms/Iq4Ub . Say, 99999
·
Monday, 24 April 2017 23:53
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post