Its not resolved, please view the following, what do I change to make sure that it doesnt how FULL post?
<?php get_header(); ?>
<?php
$count = 0;
?>
<?php if (have_posts()) : ?>
<div class="fullbox_excerpt">
<div class="fullbox_content">
<h3>
<?php single_cat_title(); ?>
</h3>
<?php while (have_posts()) : the_post(); ?>
<?php
if($count > 0)
{
?>
<div class="excerpt_separator"></div>
<?php
}
?>
<div class="excerpt_meta" id="post-<?php the_ID(); ?>">
<div class="excerpt_desc">
<h2><a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a></h2>
<?php cutstr($post->post_content, 500); ?>
</div>
<div class="excerpt_more"> <a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>" class="more-link"><?php _e('READ THE FULL ARTICLE >>', 'theme'); ?></a> </div>
</div>
<?php $count++; ?>
<?php endwhile; ?>
</div>
<div class="fullbox_footer"></div>
</div>
<div id="post-navigator">
<?php if (function_exists('wp_pagenavi')) : ?>
<?php wp_pagenavi(); ?>
<?php else : ?>
<div class="alignright"><?php previous_posts_link(__('Newer Entries »', 'theme')); ?></div>
<div class="alignleft"><?php next_posts_link(__('« Older Entries', 'theme')); ?></div>
<?php endif; ?>
</div>
<?php else: ?>
<div class="fullbox">
<div class="fullbox_header"></div>
<div class="post_message"><?php _e('Sorry. There are no post available for selected category.', 'theme'); ?></div>
<div class="fullbox_footer"></div>
</div>
<?php endif; ?>
<?php get_sidebar(); ?>
<?php get_footer(); ?>
Also important to note that I removed the name of the theme, and out in the text “theme”, as to not draw the focus off, because I dont believe this to be a theme issue.