For one of my sites, I wanted a more generic, gentler comment heading, so I needed to remove and/or change “Speak Your Mind.” Here’s how I did that.
add_filter('genesis_comment_form_args', 'custom_comment_form_args');
function custom_comment_form_args($args) {
$args['title_reply'] = 'Leave a Comment'; // $args['title_reply'] = ''; for total removal
return $args;
}











How to Move Your Genesis Comment Form Above Your Comments/Pings
To move your comment form above your comments, simply add this bit of code to your functions.php file:
The code above which you add should be placed anywhere after this in your child theme functions.php file:
And before the following closing code (if it exists):