Look in your template files to find where the_title() is called (in the loop)
in the default theme, it looks like this:
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<div <?php post_class() ?> id="post-<?php the_ID(); ?>">
<strong>
<h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>">
<?php the_title(); ?></a></h2></strong>
<small><?php the_time('F jS, Y') ?> <!-- by <?php the_author() ?> --></small>
<div class="entry">
<?php the_content('Read the rest of this entry »'); ?>
</div>
<p class="postmetadata"><?php the_tags('Tags: ', ', ', '<br />'); ?> Posted in <?php the_category(', ') ?> | <?php edit_post_link('Edit', '', ' | '); ?> <?php comments_popup_link('No Comments »', '1 Comment »', '% Comments »'); ?></p>
</div>
<?php endwhile; ?>
<div class="navigation">
<div class="alignleft"><?php next_posts_link('« Older Entries') ?></div>
<div class="alignright"><?php previous_posts_link('Newer Entries »') ?></div>
</div>
<?php else : ?>
<h2 class="center">Not Found</h2>
<p class="center">Sorry, but you are looking for something that isn't here.</p>
<?php get_search_form(); ?>
<?php endif; ?>
replace that bolded bit with:
<?php if (is_front_page()) {
echo
'<h2> </h2>'; //write the tags, but show nothing
} else {
echo
'<h2><a href="'.the_permalink().'" rel="bookmark" title="Permanent Link to'.the_title_attribute().'">'.the_title().'</a></h2>';//write the standard loop markup
}
?>
I’m not sure how much you know about php and WordPress… what I am doing up there when writing the title only if NOT the front page (homepage) is using echo to write tags and static info… the stuff between the periods are functions (not literal information). That may be more than you want or need to know…
Anyway, whichever template file is used to display your content (page.php for Pages; index.php or category.php for Posts, etc is where you look for the LOOP and modify things. For instance, I use page.php a LOT… and typically for the frontpage. Some sites never use pages and so the loop modification would be in the index.php file.
HTH