Add the following code in the child or genesis functions.php
//remove post tile
remove_action( 'genesis_entry_header', 'genesis_do_post_title' );
The above action will remove the <h1> title throughout the site!
You can customize it by adding the following for the specific post types:
add_action('get_header','showmytitlehere');
function showmytitlehere(){
if(!is_page() && !is_single()){
add_action( 'genesis_entry_header', 'genesis_do_post_title' );
}
}