Archived topic
Change "Leave a comment" HTML tag
3 replies · Started by Nacho on February 2, 2022
Hello,
In my website the "Leave a comment" text is set to H3 and I want it to be an H4.
How can I change that?
Thanks a lot in advance.
Hi Nacho,
You can try adding this custom PHP snippet to this:
add_filter('comment_form_defaults',function($defaults){
$defaults['title_reply_before'] = '<h4 id="reply-title" class="comment-reply-title">';
$defaults['title_reply_after'] = '</h4>';
return $defaults;
}, 10, 1);
You may refer to this link for reference regarding adding PHP: https://docs.generatepress.com/article/adding-php/
Hope this helps! :)
Hello Fernando,
That worked like a charm.
Thanks a lot.
You're welcome! Feel free to reach out if you'll need assistance with anything else! :)