Required: Genesis Framework, Genesis Simple Hooks plugin
On most Genesis themes, the title is automatically displayed at the top of your page/post. To prevent this from being displayed, go to the Genesis > Simple Hooks menu and find the Document Hooks section. Add the following code to the text box under the genesis_before Hook, and check the box next to “Execute PHP on this hook?” and click Save Changes.
<?php
remove_action('genesis_post_title', 'genesis_do_post_title');
?>