This file seems to control the guest view:
components/com_easysocial/themes/wireframe/dashboard/guests/default.php
The sidebar code appears to be missing:
<?php
/**
* @package EasySocial
* @copyright Copyright (C) 2010 - 2016 Stack Ideas Sdn Bhd. All rights reserved.
* @license GNU/GPL, see LICENSE.php
* EasySocial is free software. This version may have been modified pursuant
* to the GNU General Public License, and as distributed it includes or
* is derivative of works licensed under the GNU General Public License or
* other free or open source software licenses.
* See COPYRIGHT.php for copyright notices and details.
*/
defined('_JEXEC') or die('Unauthorized Access');
?>
<div>
<?php echo $this->html('html.login', $return); ?>
</div>
<div class="es-dashboard">
<div class="es-container">
<div class="es-content">
<?php echo $this->render('module', 'es-dashboard-before-contents'); ?>
<div class="es-snackbar">
<div class="es-snackbar__cell">
<h1 class="es-snackbar__title">
<?php if ($filter == 'hashtg') { ?>
#<?php echo $hashtag;?>
<?php } else { ?>
<?php echo JText::_('COM_EASYSOCIAL_RECENT_UPDATES');?>
<?php } ?>
</h1>
</div>
<?php if ($this->config->get('stream.rss.enabled', true)) { ?>
<div class="es-snackbar__cell">
<a href="<?php echo $rssLink;?>" class=" pull-right btn-rss" target="_blank">
<i class="fa fa-rss-square"></i> <?php echo JText::_('COM_EASYSOCIAL_SUBSCRIBE_VIA_RSS');?>
</a>
</div>
<?php } ?>
</div>
<div>
<?php echo $stream->html(false, JText::_('COM_EASYSOCIAL_UNITY_STREAM_LOGIN_TO_VIEW')); ?>
<?php echo $this->includeTemplate('site/dashboard/guests/stream.login'); ?>
</div>
<?php echo $this->render('module', 'es-dashboard-after-contents'); ?>
</div>
</div>
</div>