Hello Macjoomla,
We have actually removed this altogether to simplify the UI for your authors. They really shouldn't need to know if they need to publish on the front page. If you really need this, you could edit the file below,
/components/com_easyblog/themes/wireframe/composer/panels/post/general/default.php
At line 64, replace the codes below,
[gist]
<?php if ($this->acl->get('contribute_frontpage') ) { ?>
<input type="hidden" name="frontpage" value="<?php echo $post->frontpage ? 1 : 0;?>" />
<?php } ?>
[/gist]
With,
[gist]
<?php echo $this->html('composer.field', 'form.toggler', 'frontpage', 'Front Page', $post->frontpage); ?>
[/gist]