Viewing 1 replies (of 1 total)
  • Hello,

    Try to add the below code in the OceanWP child theme. Follow the documentation to install child theme properly – Import Settings into Child Theme

    You can download the child theme from here – Get Child Theme

    add_filter('comment_form_defaults', 'ocean_custom_comment_title', 20);
    function ocean_custom_comment_title( $defaults ){
      $defaults['title_reply'] = __('Leave Your Thoughts Here...', 'customizr-child');
      return $defaults;
    }
Viewing 1 replies (of 1 total)
  • The topic ‘Change text “Leave a Reply” for comment submission’ is closed to new replies.