By Jamar Jp Pugh on Wednesday, 29 March 2017
Posted in General
Replies 3
Likes 0
Views 126
Votes 0
anyway to remove any or all of the things highlighted in red in my attached image.

I am making a site where I don't want a large part of the community to have access to the full power of ES
Hi there,

If you wanted to entirely disabled them on your site, you can achieved them by going to Backend>Componens>EasySocial>Settings and disable them accordingly for Group, Pages, Videos, Photos as you can see here for example, Pages, https://screencast.com/t/MTGNFIWkNR and for friend, you can go to Backend>Componens>EasySocial>Settings>General>General as shown https://screencast.com/t/ufVGc5l1lu.

But if you wanted to control them based on their user group(Profile Types), you can disabled them by going to Backend>Componens>EasySocial>Profiles Types>Your type of profile type>ACL and disable them accordingly as shown https://screencast.com/t/T1459wB91ov.

Please give it a try and see how it goes
·
Thursday, 30 March 2017 11:39
·
0 Likes
·
0 Votes
·
0 Comments
·
This answer helped a lot last thing is how do i remove the word application from a profile as you can see in attached file.
·
Saturday, 01 April 2017 05:50
·
0 Likes
·
0 Votes
·
0 Comments
·
You may remove the codes below from /components/com_easysocial/themes/wireframe/profile/default/default.php

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

<div class="es-side-widget__bd">
<ul class="o-tabs o-tabs--stacked">
<?php if ($apps) { ?>
<?php foreach ($apps as $app) { ?>
<?php $app->loadCss(); ?>
<li class="o-tabs__item<?php echo $activeApp == $app->id ? ' active' : '';?>" data-filter-item="apps" data-id="<?php echo $app->id;?>"
data-layout="<?php echo $app->getViews('profile')->type; ?>"
data-canvas-url="<?php echo FRoute::apps(array('id' => $app->getAlias(), 'layout' => 'canvas', 'uid' => $user->getAlias(), 'type' => SOCIAL_TYPE_USER));?>"
>
<a href="<?php echo ESR::profile(array('id' => $user->getAlias(), 'appId' => $app->getAlias()));?>" class="o-tabs__link" title="<?php echo $app->getPageTitle(); ?>">
<?php echo $app->getAppTitle(); ?>
</a>
</li>
<?php } ?>
<?php } ?>
</ul>
<?php if ($user->isViewer() && $this->config->get('users.layout.apps')) { ?>
<a href="<?php echo ESR::apps();?>" class="btn btn-es-primary-o btn-sm btn-block t-lg-mt--lg"><?php echo JText::_('COM_EASYSOCIAL_BROWSE'); ?></a>
<?php } ?>
</div>
</div>
[/gist]
·
Saturday, 01 April 2017 19:32
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post