Hello David,
What you can do is to edit the theme file /components/com_easyblog/themes/default/blog.teams.php and locate the codes below,
<li class="profile-module my-writers">
<span class="traits float-r"><?php echo count( $row->members );?></span>
<span><?php echo JText::_('COM_EASYBLOG_TEMBLOG_CONTRIBUTORS' ); ?></span>
<ul class="active-bloggers clearfix reset-ul list-full<?php echo ( $system->config->get('layout_avatar') ) ? '' : ' no-avatar'; ?>">
<?php
if(! empty($row->members))
{
foreach($row->members as $member)
{
?>
<li>
<div class="pts pbs">
<a href="<?php echo $member->getProfileLink(); ?>" title="<?php echo $member->displayName; ?>">
<?php if ( $system->config->get('layout_avatar') ) { ?>
<img src="<?php echo $member->getAvatar(); ?>" alt="<?php echo $member->displayName; ?>" width="40" height="40" class="avatar float-l mrm"/>
<?php echo EasyBlogTooltipHelper::getBloggerHTML( $member->id, array('my'=>'left bottom','at'=>'left top','of'=>array('traverseUsing'=>'prev')) ); ?>
<?php } ?>
<?php echo $member->displayName;?>
</a>
</div>
</li>
<?php
}
}
?>
</ul>
</li>
Replace it with,
<?php if ($row->id != 9999) { ?>
<li class="profile-module my-writers">
<span class="traits float-r"><?php echo count( $row->members );?></span>
<span><?php echo JText::_('COM_EASYBLOG_TEMBLOG_CONTRIBUTORS' ); ?></span>
<ul class="active-bloggers clearfix reset-ul list-full<?php echo ( $system->config->get('layout_avatar') ) ? '' : ' no-avatar'; ?>">
<?php
if(! empty($row->members))
{
foreach($row->members as $member)
{
?>
<li>
<div class="pts pbs">
<a href="<?php echo $member->getProfileLink(); ?>" title="<?php echo $member->displayName; ?>">
<?php if ( $system->config->get('layout_avatar') ) { ?>
<img src="<?php echo $member->getAvatar(); ?>" alt="<?php echo $member->displayName; ?>" width="40" height="40" class="avatar float-l mrm"/>
<?php echo EasyBlogTooltipHelper::getBloggerHTML( $member->id, array('my'=>'left bottom','at'=>'left top','of'=>array('traverseUsing'=>'prev')) ); ?>
<?php } ?>
<?php echo $member->displayName;?>
</a>
</div>
</li>
<?php
}
}
?>
</ul>
</li>
<?php } ?>
Replace 9999 with the team id that you do not want to display the members.