Hi there,
For ../components/com_easysocial/themes/wireframe/toolbar/default.php files, we have added followers and friends links in it as you can check on codes below.
[gist type="php"]
<?php if ($this->config->get('friends.enabled')) { ?>
<li class="<?php echo $highlight == 'friends' ? 'is-active' : '';?>">
<a href="<?php echo ESR::friends();?>"><?php echo JText::_('COM_ES_MY_FRIENDS'); ?></a>
</li>
<?php } ?>
<?php if ($this->config->get('followers.enabled')) { ?>
<li class="<?php echo $highlight == 'followers' ? 'is-active' : '';?>">
<a href="<?php echo ESR::followers();?>"><?php echo JText::_('COM_ES_MY_FOLLOWERS'); ?></a>
</li>
<?php } ?>
[/gist]
For components/com_easysocial/themes/wireframe/users/default/default.php fiels, we have added some checking for blocked users as you can see on codes below.
[gist type="php"]
<?php if (ES::config()->get('users.blocking.enabled') && $this->my->id) { ?>
<li class="o-tabs__item <?php echo $filter == 'blocked' ? 'active' : '';?>" data-filter-item data-type="users" data-id="blocked">
<a href="<?php echo ESR::users(array('filter' => 'blocked'));?>" class="o-tabs__link" title="<?php echo JText::_( 'COM_EASYSOCIAL_PAGE_TITLE_USERS_BLOCKED' , true );?>"><?php echo JText::_('COM_ES_USERS_FILTER_BLOCKED');?>
</a>
<div class="o-loader o-loader--sm"></div>
</li>
<?php } ?>
[/gist]