Open archives.php and remove this:
PHP Code:
<h3 class="top">by month:</h3>
<ul>
<?php wp_get_archives('type=monthly'); ?>
</ul>
As for displaying all posts, use get_posts:
PHP Code:
<h3 class="top">all posts:</h3>
<ul>
<?php
$postslist = get_posts('numberposts=-1');
foreach ($postslist as $post) :
setup_postdata($post);
?>
<li><?php the_title(); ?></li>
</ul>
<?php endforeach; ?>
For more details: http://codex.wordpress.org/Template_Tags/get_posts

Originally Posted by
ceejski
Hi, i would like to know how to only display on my archives page "categories" and a complete list of "single posts" in that order. I wish to exclude "by month" completely, or any reference to time. I've already commented-out dates.
Thanx a bunch!
Bookmarks