• Can I change the heading on a comment block so that it says “Leave a Comment” instead of “Leave a Reply”?

    The page I need help with: [log in to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
  • You can try adding the following codes:

    function mycustom_comment_form_title_reply( $defaults ) {
    $defaults['title_reply'] = __( 'Leave a Comment' );
    return $defaults;
    }
    add_filter( 'comment_form_defaults', 'mycustom_comment_form_title_reply' );

    You can add these codes by using plugins such as the WpCode instead of adding them to functions.php to prevent the file bring overridden when upgrading.

    Brad Dalton

    (@wordpresssites)

Viewing 2 replies - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.