How can I remove Timeline from user profile and when user make registration user to select the type of account?
// Remove LINE from 100 until 110
<li class="<?php echo !empty($timeline) ? 'active' : '';?>"
data-layout="embed"
data-id="<?php echo $user->id;?>"
data-namespace="site/controllers/profile/getStream"
data-embed-url="<?php echo FRoute::profile(array('id' => $user->getAlias(), 'layout' => 'timeline'));?>"
data-profile-apps-item
>
<a href="javascript:void(0);">
<i class="icon-es-genius mr-5"></i> <?php echo JText::_( 'COM_EASYSOCIAL_PROFILE_TIMELINE' );?>
</a>
</li>
// Remove line from 161 until 186
<?php if( $this->config->get( 'badges.enabled' ) ){ ?>
<li class="<?php echo $view == 'badges' ? 'active' : '';?>">
<a href="<?php echo FRoute::badges( array( 'layout' => 'achievements' ) );?>">
<?php echo JText::_( 'COM_EASYSOCIAL_TOOLBAR_PROFILE_ACHIEVEMENTS' );?>
</a>
</li>
<?php } ?>
<?php if( $this->config->get( 'points.enabled' ) ){ ?>
<li class="<?php echo $view == 'points' ? 'active' : '';?>">
<a href="<?php echo FRoute::points( array( 'layout' => 'history' , 'userid' => $this->my->getAlias() ) );?>">
<?php echo JText::_( 'COM_EASYSOCIAL_TOOLBAR_PROFILE_POINTS_HISTORY' );?>
</a>
</li>
<?php } ?>
<li class="<?php echo $view == 'apps' ? 'active' : '';?>">
<a href="<?php echo FRoute::apps();?>">
<?php echo JText::_( 'COM_EASYSOCIAL_TOOLBAR_APPS' );?>
</a>
</li>
<li class="<?php echo $view == 'activities' ? 'active' : '';?>">
<a href="<?php echo FRoute::activities();?>">
<?php echo JText::_( 'COM_EASYSOCIAL_TOOLBAR_PROFILE_ACTIVITIES' );?>
</a>
</li>