Hey thanks a lot for the replies,
Flash, with the wp_list that is used for the page that displays the authors. I want to hide the info on the actual post/page that is view where it has the author beside the article (but I want to display anybody else besides admin). I have tried the could you suggested in the author_template but won't work. I am assuming this is just for just the author listing page, thanks.
bgeisel:
I might be missing something here, but I want to normally display the following html (this is what is there now):
<div class='dateauthor'>
<small class='capsule'><?php the_time('F jS, Y') ?> by <?php the_author() ?>
</small>
</div>
But when the author is an admin for the div to be hidden.
I tried this from your code:
<div class='dateauthor'>
<small class='capsule'><?php the_time('F jS, Y') ?> by <?php $author = the_author() ?>
</small>
</div>
<?php if ($author == "admin") { ?>
<div class='dateauthor'>
...
</div>
<?php } ?>
But it just creates another div as expected with the periods.
Sorry but thank you for the help