• I’ve noticed other sites have a name, email, and website field but I only have a comment field. I also would like to change the text from “Leave a reply” to “Leave a comment”. Where are the settings to change that part of my posts?

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

Viewing 3 replies - 1 through 3 (of 3 total)
  • Hello,

    The other fields will appear only when you logged out. In logged in, it automatically picks the name, email and website link from your profile.

    To change the Leave a reply text, try adding the below code to the oceanwp child theme’s functons.php file –

    add_filter('comment_form_defaults', 'ocean_custom_comment_title', 20);
    function ocean_custom_comment_title( $defaults ){
      $defaults['title_reply'] = __('Leave a comment', 'customizr-child');
      return $defaults;
    }
    Thread Starter Jim

    (@kernix)

    Ok, didn’t know about the logged in issue – let me try that script – thanks!

    You’re welcome!

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘How do I format the Comments section below posts?’ is closed to new replies.