h3 tag in the text "leave your comment"

Posted in: Newspaper
Post count: 80

350 / 5000
Resultados de traducción
Hello team,

I want to change the h3 tag that appears as a prompt to leave a comment. As you can see in the video, it appears as an H3 and I want it not to be paragraphed or div. I change it with the TagDiv but it doesn’t stop showing it as H3.

See video —–> https://www.loom.com/share/4532046385a74945bbe2afec1a219043

What is there to do?

Post count: 27744

Hello,

To change the h3 from “Leave a reply” you need to change it in the theme files, in this path wp-includes/comment-template.php -> https://i.imgur.com/n8S9eZj.png

Thank you!

Post count: 80

Thanks Anamaria

Now yes! With the modification of h3 by paragraph <p> </p> it looks good. Just one more question, every time the template is updated should I change it or does this “comment-template.php” file remain unchanged?

Very thankful

Post count: 27744

Hello,

That file is overwritten when you update WordPress, I don’t think updating the theme will affect that file.

Thank you!

Post count: 69

For someone looking for a solution that does not override your changes, place this one in your functions.php of your child theme:
add_filter( 'comment_form_defaults', 'custom_reply_title' );
function custom_reply_title( $defaults ){
$defaults['title_reply_before'] = '<span id="reply-title" class="h4 comment-reply-title">';
$defaults['title_reply_after'] = '</span>';
return $defaults;
}

Viewing 5 posts - 1 through 5 (of 5 total)
The forum ‘Newspaper’ is closed to new topics and replies.