Change "Comments" text above the comments list
<?php
//* Do NOT include the opening php tag shown above. Copy the code shown below.
‚add_filter( 'genesis_title_comments', 'sk_custom_comments_title' );
/**
* Change "Comments" text above the comments list.
*
* @author Sridhar Katakam
* @link http://sridharkatakam.com/
*/
function sk_custom_comments_title() {
return '<h3>What Others Are Saying:</h3>';
}