I had the same problem while trying to add “hide_title”
Here’s what I did, edit the code in core.php. find the mystique_page() function and find the
<h1 class="title">
<?php
the_title();
?>
</h1>
add
if(!is_front_page())
to make it
<h1 class="title">
<?php
if(!is_front_page()) the_title();
?>
</h1>