By Macjoomla on Monday, 19 November 2018
Posted in General Issues
Replies 5
Likes 0
Views 503
Votes 0
Hello SI Support,

in es sidebar i have a module "Neuigkeiten" (News) and i am searching and can't find preferences to show or hide it.

For guests it shows, as you can see in screen shot with only "all news"
For registered it shows with "all news" and some more filters

I just can choose in backend not to show "all news", then it does not show "all news" for registered, but no matter, it is still showing "all news" to guests.

So please help me to understand the magic behind it and before all, to hide it totally from guests.

Thank you and best regards, macjoomla
Hi there,

We will show them currently for guest. You can do template override at this path .../components/com_easysocial/themes/wireframe/dashboard/guests/default.php
by removing codes below and see how it goes.

[gist type="php"]
<div class="es-side-widget">
<?php echo $this->html('widget.title', 'COM_EASYSOCIAL_DASHBOARD_SIDEBAR_NEWSFEEDS'); ?>

<div class="es-side-widget__bd">
<ul class="o-tabs o-tabs--stacked">
<li class="o-tabs__item <?php echo $filter == 'everyone' ? ' active' : '';?>">
<a href="javascript:void(0);" class="o-tabs__link">
<?php echo JText::_('COM_EASYSOCIAL_DASHBOARD_SIDEBAR_NEWSFEEDS_EVERYONE');?>
</a>
</li>
</ul>
</div>

</div>
[/gist]

Note:
How to template override https://stackideas.com/docs/easysocial/administrators/templating/template-overrides
·
Monday, 19 November 2018 18:44
·
0 Likes
·
0 Votes
·
0 Comments
·
Thank you very much for your fast ans helpful answer. This works fine now for me.

However i am wondering, why this seems to be one of the onliest things, that do not have a preference in backend or why this is not working as a real module, that would make it more flexible

Thank you and best regards, Macjoomla
·
Monday, 19 November 2018 19:54
·
0 Likes
·
0 Votes
·
0 Comments
·
Hi there,

Thanks for the suggestion.

Perhaps it would be best if you can submit a feature request regarding this issues by creating a new ticket on the forums and set it to "Feature Request" so that everyone else could vote for it. We will prioritize this feature during the development process for the next major version of EasySocial if there are more people request on this.

Thanks for your understanding.
·
Monday, 19 November 2018 20:11
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post