Display "Leave a Re...
 
Share:
Notifications
Clear all

[Solved] Display "Leave a Reply" Comment Header

1 Posts
1 Users
0 Likes
12.1 K Views
Tom
 Tom
(@tomson)
Honorable Member Support
Joined: 8 years ago
Posts: 494
Topic starter  

In the wpDiscuz 7 version, we've removed the regular header.

The comment title is located under the comment form on the top of all comments with comment filtering and ordering buttons:

wpDiscuz 7 comemnt form header

 

However, you can add it back very easy, putting this hook code in the WordPress active theme functions.php file (more information how to add insert custom code):

add_action('wpdiscuz_comment_form_before', function() {
echo '<h3 style="max-width: 750px;margin: 0px auto;">' . __('Leave a Reply', 'wpdiscuz') . '</h3>';
});

Related topics: 

 


   
Share: