• Where do i change the “Leave a Reply” comment title?
    I want to change this title to ‘Thanks for your Feedback’
    I checked in functions.php. Cheers

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

Viewing 5 replies - 1 through 5 (of 5 total)
  • It should be somewhere in the form plugin you’re using.

    Not sure which one – I don’t use the one suggested by OceanWp myself.

    Check in the menu perhaps, as it’s probably not in customize

    Thread Starter nichere

    (@nichere)

    I am not using a form plugin. Thanks

    Hello,

    Try to add the below code in the OceanWP child theme’s functions.php file and check it works or not –

    function ocean_custom_comment_title( $defaults ){
      $defaults['title_reply'] = __('Thanks for your Feedback', 'oceanwp');
      return $defaults;
    }
    add_filter('comment_form_defaults', 'ocean_custom_comment_title', 20);
    Thread Starter nichere

    (@nichere)

    Yes, works thank you

    You’re welcome!

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘change comment form “Leave a Reply” text’ is closed to new replies.