Hello Goodwin mankomba,
Sorry for late reply to this,
You can remove the code in this file
JoomlaFolder\components\com_easysocial\themes\frosty\profile\default.header.php
LINE 94 - 153
<div class="es-header-stat">
<ul class="list-inline">
<li>
<a href="<?php echo FRoute::friends( array( 'userid' => $user->getAlias() ) );?>" class="btn btn-clean">
<div class="center">
<span><?php echo $user->getTotalFriends();?></span>
</div>
<div class="center stat-desc">
<span><?php echo JText::_( Foundry::string()->computeNoun( 'COM_EASYSOCIAL_FRIENDS' , $user->getTotalFriends() ) ); ?></span>
</div>
</a>
</li>
<?php if( $this->config->get( 'followers.enabled' ) ){ ?>
<li>
<a href="<?php echo FRoute::followers( array( 'userid' => $user->getAlias() ) );?>" class="btn btn-clean">
<div class="center">
<span><?php echo $user->getTotalFollowers();?></span>
</div>
<div class="center stat-desc">
<span><?php echo JText::_( Foundry::string()->computeNoun( 'COM_EASYSOCIAL_FOLLOWERS' , $user->getTotalFollowers() ) ); ?></span>
</div>
</a>
</li>
<?php } ?>
<?php if( $this->config->get('badges.enabled' ) ){ ?>
<li>
<a href="<?php echo FRoute::badges( array( 'layout' => 'achievements' , 'userid' => $user->getAlias() ) );?>" class="btn btn-clean">
<div class="center">
<span><?php echo $user->getTotalBadges();?></span>
</div>
<div class="center stat-desc">
<span><?php echo JText::_( Foundry::string()->computeNoun( 'COM_EASYSOCIAL_ACHIEVEMENTS' , $user->getTotalBadges() ) ); ?></span>
</div>
</a>
</li>
<?php } ?>
<?php if( $this->template->get( 'profile_points' , true ) && $this->config->get( 'points.enabled' ) ){ ?>
<li>
<a href="<?php echo FRoute::points( array( 'userid' => $user->getAlias() , 'layout' => 'history' ) );?>" class="btn btn-clean">
<div class="center">
<span><?php echo $user->getPoints();?></span>
</div>
<div class="center stat-desc">
<span><?php echo JText::_( 'COM_EASYSOCIAL_PROFILE_POINTS' );?></span>
</div>
</a>
</li>
<?php } ?>
</ul>
</div>
Hope this help.