Usually if I wanted to hide a page title (for example, if using a static page as the front page of my site) I could just remove code something like <h2><?php the_title() ?></h2> from page.php or make a new file, "homepage.php" which had the entire contents of page.php except for the title code.
However, in the theme I'm editing, page.php looks like this:
<?php
/* Mystique/digitalnature */
get_header();
?>
<!-- main content: primary + sidebar(s) -->
<div id="main">
<div id="main-inside" class="clear-block">
<!-- primary content -->
<div id="primary-content">
<div class="blocks">
<?php do_action('mystique_before_primary'); ?>
<?php
if (have_posts()):
while (have_posts()):
the_post();
mystique_page();
endwhile;
endif;
comments_template();
?>
<?php do_action('mystique_after_primary'); ?>
</div>
</div>
<!-- /primary content -->
<?php get_sidebar(); ?>
</div>
</div>
<!-- /main content -->
<?php get_footer(); ?>
How can I remove the page title?