Hi Mauricio Herzog,
I am sorry for the late reply for this. As far I understand here, you wanted to having the field information appear after the text content. Firstly, to display it on the Easyblog Frontpage listing, you must enable this option:
http://screencast.com/t/x2GM2vXx .
1. Click
Components>Easyblog>Settings>Layout>Listing.
Then you might want to open these two files:
../components/com_easyblog/themes/nickel/blogs/latest/default.main.php - For blog listing
../components/com_easyblog/themes/wireframe/blogs/entry/default.php - For blog entry (after clicking readmore button)
In these files, you can find for these codes:
For
../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 } ?>
For
../components/com_easyblog/themes/nickel/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.
For make it not effected after you make update, you have to put the file that you have modified on your template. You can refer to this documentation on how to do Template Override
http://stackideas.com/docs/easyblog/administrators/customizations/template-overriding.
Please give it a try.