Archived topic
Change comments h class or add additional css to exclude in table of content
3 replies · Started by Tomas on January 30, 2020
Viewing posts 1–4 of 4
Hi,
Trying to figure out how to exclude comments in Elementor table of content widget.
Either i have to change comments h3 to h4 or add additional css to comments so it can be excluded in table of content widget.
Is there any workaround about this.
Kind Regards
Jerker from Sweden
Hi there,
try this PHP Filter snippet to change the H3 to H4:
add_filter( 'comment_form_defaults', 'custom_reply_title' );
function custom_reply_title( $defaults ){
$defaults['title_reply_before'] = '<h4 id="reply-title" class="comment-reply-title">';
$defaults['title_reply_after'] = '</h4>';
return $defaults;
}
Hi David,
Many thanks. Worked like a charm.
Glad to be of help
This archived topic is closed to new replies.