Here’s how to remove tile from your homepage or specific page in genesis theme .

By Code:

Add this to your functions.php

add_action('get_header', 'remove_page_title');
function remove_page_title() {
global $post;
  if (is_front_page() or $post->ID=='yourpage_id') {
    remove_action('genesis_post_title', 'genesis_do_post_title');
  }


By Plugin :

Install & Activate :
http://wordpress.org/plugins/genesis-title-toggle/