Hey there,
The idea is to actually "tease" visitors on your site so that they will register for an account should they want to create an event
If you really need to hide this, edit the file /components/com_easysocial/themes/wireframe/events/default.php and at line 24 locate the codes below:
<div class="es-widget-create mr-10">
<?php if ($this->my->isSiteAdmin() || $this->access->allowed('events.create') && !$this->access->intervalExceeded('events.limit', $this->my->id)) { ?>
<a href="<?php echo FRoute::events(array('layout' => 'create')); ?>" class="btn btn-es-primary btn-create btn-block"><?php echo JText::_('COM_EASYSOCIAL_EVENTS_CREATE_EVENT'); ?></a>
<?php } ?>
</div>
Replace it with,
<?php if ($this->my->id) { ?>
<div class="es-widget-create mr-10">
<?php if ($this->my->isSiteAdmin() || $this->access->allowed('events.create') && !$this->access->intervalExceeded('events.limit', $this->my->id)) { ?>
<a href="<?php echo FRoute::events(array('layout' => 'create')); ?>" class="btn btn-es-primary btn-create btn-block"><?php echo JText::_('COM_EASYSOCIAL_EVENTS_CREATE_EVENT'); ?></a>
<?php } ?>
</div>
<?php } ?>