I am using a theme called Vesper (http://wordpress.org/extend/themes/vesper) and when you click on the categories, it will show only excerpts of each post,instead of the whole content... How will I enable it to show the full content of the post when you click on the categories, instead of just excerpts.
Open the file wp-loop.php from the theme directory and change <div class="post-entry"> <?php if(is_page() || is_single()) { ?> <?php the_content('Continue Reading »'); ?> <?php } else { ?> <?php the_excerpt_reloaded(100, '<h3>,<h4>,<a>,<img>,<p>,<ul>,<ol>,<li>', 'content', TRUE, 'Continue Reading', FALSE, 2); ?> <?php } ?> </div> PHP: to <div class="post-entry"> <?php the_content('Continue Reading »'); ?> </div> PHP: