Hey,
in your template-blog.php
replace this:
<!-- ####### MAIN CONTAINER ####### -->
<div class='container_wrap' id='main'>
<div class='container'>
<div class='template-blog template-blog-overview content'>
<div class='box'>
<div class='inner_box'>
<?php
/* Run the loop to output the posts.
* If you want to overload this in a child theme then include a file
* called loop-index.php and that will be used instead.
*/
$more = 0;
get_template_part( 'includes/loop', 'index' );
?>
</div><!--end inner_box-->
</div><!--end box-->
<!--end content-->
</div>
<?php
//get the sidebar
wp_reset_query();
$avia_config['currently_viewing'] = 'blog';
get_sidebar();
?>
</div><!--end container-->
by
<!-- ####### MAIN CONTAINER ####### -->
<div class='container <?php echo $avia_config['layout']." ".$protectedPost; ?>'>
<div class='template-blog template-single-blog content'>
<?php
/* Run the loop to output the posts.
* If you want to overload this in a child theme then include a file
* called loop-index.php and that will be used instead.
*
*/
$loop = '';
$content_style = avia_post_meta(avia_get_the_ID(), 'entry_layout');
if(strpos($content_style,'mini') !== false)
{
$loop = 'page-mini';
}
else
{
echo "<div class='box'>";
echo "<div class='inner_box'>";
get_template_part( 'includes/loop', 'index' );
//show related posts if there are any
get_template_part( 'includes/related-posts');
//wordpress function that loads the comments template "comments.php"
comments_template( '/includes/comments.php');
echo "</div><!--end inner_box-->";
echo "</div><!--end box-->";
}
?>
<!--end content-->
</div>
<?php
if($loop) get_template_part( 'includes/loop', $loop );
$avia_config['currently_viewing'] = "blog";
//get the sidebar
get_sidebar();
?>
</div><!--end container-->
This should display full excerpts.
As for the other questions ykblue & gouvi- could you restate them? It's getting confusing who wants what to happen.