• How do I change the heading for the comments section from “Leave a Reply”
    to “Leave a Comment” ?
    I am using the Frontier Theme
    I searched all the forums but couldn’t find a solution.

Viewing 2 replies - 1 through 2 (of 2 total)
  • Add this on your child-theme’s functions.php

    function ra_comment_form_defaults( $defaults ) {
         $defaults['title_reply'] = 'Leave a Comment';
         return $defaults;
    }
    add_filter( 'comment_form_defaults', 'ra_comment_form_defaults' );
    Thread Starter helenxmas

    (@helenxmas)

    Dear Ronangelo
    Many thanks for your speedy reply – it worked!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Changing the Comments Box in the Frontier Theme?’ is closed to new replies.