Wondering how to hide the list of users appearing in the Register page or Select Profile Type page
<?php if( $profile->getMembersCount() && $this->template->get( 'registration_profile_users' ) ) { ?>
<div class="row profile-members">
<div class="col-md-12">
<hr />
<div class="list-profile-type-peep small mt-5 mb-5">
<?php echo JText::sprintf( 'COM_EASYSOCIAL_REGISTRATIONS_OTHER_PROFILE_MEMBERS' , $profile->getMembersCount() );?>
</div>
<?php if( $profile->users ){ ?>
<ul class="fd-reset-list list-inline profile-users">
<?php foreach( $profile->users as $user ){ ?>
<li data-es-provide="tooltip" data-original-title="<?php echo $this->html( 'string.escape' , $user->getName() );?>" style="float: left;">
<a href="<?php echo $user->getPermalink();?>" class="es-avatar es-avatar-rounded pull-left mr-10">
<img width="24" height="24" class="img-polaroid" src="<?php echo $user->getAvatar( SOCIAL_AVATAR_SMALL );?>" title="<?php echo $this->html( 'string.escape' , $user->getName() );?>" />
</a>
</li>
<?php } ?>
</ul>
<?php } ?>
</div>
</div>
<?php } ?>