Hello,
Firstly, to display it on the Easyblog Frontpage listing, you must enable this option:
http://screencast.com/t/x2GM2vXx in
Backend>Easyblog>Settings>Layout>Listing. Then you might want to open these two files:
../components/com_easyblog/themes/vintage/blogs/latest/default.main.php - Blog listing
../components/com_easyblog/themes/wireframe/blogs/entry/default.php - Blog entry (after clicking readmore)
In these files, you can find for these codes:
// ../components/com_easyblog/themes/wireframe/blogs/entry/default.php
<?php if ($post->fields && $this->entryParams->get('post_fields', true)) { ?>
<?php echo $this->output('site/blogs/entry/fields', array('fields' => $post->fields)); ?>
<?php } ?>
// ../components/com_easyblog/themes/vintage/blogs/latest/default.main.php
<?php if ($post->fields && $this->params->get('post_fields', true)) { ?>
<?php echo $this->output('site/blogs/entry/fields', array('fields' => $post->fields, 'post'=>$post)); ?>
<?php } ?>
This is where it loads the custom fields. You can move these codes to change the position. Please give it a try.