Thank you so much for the help. Boo hoo, still not working. What I did was copy the code from freeriders and replaced it in the single.php file. So now it reads:
<span class=”postdate serif”><?php the_date(); ?>by
<?php
if(is_category(‘news’) || in_category(‘wellco-news’)){
/*Do nothing*/
}else{
the_author();
} ?>
</span>
But the author is still on the News page (where I don’t want it). Am I doing something wrong?
The newspage.php does have this author line in it:
$query = “SELECT p.*, u.*, r.*, p.id as post_id FROM wp_posts p LEFT JOIN wp_users u ON p.post_author = u.id LEFT JOIN wp_term_relationships r ON r.object_id = p.id WHERE p.post_status = ‘publish’ AND p.post_type=’post’ AND r.term_taxonomy_id=’3′ ORDER BY p.post_date DESC LIMIT 20”;
the index.php also has a similar $query like that one.