Paste the codes below into your function.php

[php]
add_action(‘get_header’,’remove_title’);
function remove_title(){
if( is_home() || is_front_page() ){
remove_action(‘genesis_entry_header’, ‘genesis_do_post_title’);
}
}
[/php]