By Jamar Jp Pugh on Saturday, 14 January 2017
Posted in General Issues
Replies 1
Likes 0
Views 96
Votes 0
My site is very simple and I don't want users to see things in the menu like "Poll" etc. How do i completely remove menu's like this from showing on ES such as on the users profile page at the top, etc.
You would need to modify them on the theme files The polls menu can be turned off if you disable the polls altogether. Otherwise if you still want polls, you could edit the file /components/com_easysocial/themes/wireframe/toolbar/default.php and remove the codes below,

[gist]
<?php if ($this->config->get('polls.enabled')) { ?>
<li class="<?php echo $view == 'polls' ? 'is-active' : '';?>">
<a href="<?php echo ESR::polls();?>" class="es-navbar__footer-link">
<i class="fa fa-bar-chart"></i>
<span>
<?php echo JText::_('COM_EASYSOCIAL_TOOLBAR_POLLS');?>
</span>
</a>
</li>
<?php } ?>
[/gist]
·
Saturday, 14 January 2017 01:26
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post