hello alchymyth!
i edited includes/post-summary.php in my theme. It looks like this:
<?php
$post_list_type=get_option(MTHEME . '_blog_summary');
if ( $post_list_type=="1" || $post_list_type==true ) {
the_content();
?>
<div class="clear"></div>
<div class="postinfo">
<p><?php the_tags( __('Mots clés: ','mthemelocal'), ', ', ''); ?></p>
<p><?php _e('Posté le ','mthemelocal');?> <?php the_time('j M Y (G:i)'); ?></p> </div>
<div class="clear"></div>
<?php
} else {
<strong>the_excerpt();</strong>
?>
<div class="clear"></div>
<div class="readmore">
<a href="<?php the_permalink() ?>">
<?php _e( 'Lire la suite..', 'mthemelocal' ); ?>
So i replaced “the_excerpt” by “the_content”. But there is a problem, if <!–more–> is included in the html post, the blog page dont load at all.