Remove comments links

Posted in: Newspaper
Post count: 11

Hi,

I’ve got two locations where comments information is displayed, even when comments are turned off in WordPress and in the theme panel ‘Meta info on Modules/Blocks’.

Images with the comments links are included below. How do I remove the comments count in both cases?

Comments Link 1

Comments Link 2

Thanks,

Pete

Post count: 20688

Hi,

For the post page you can disable the comment count in the theme panel also
https://www.screencast.com/t/O8pGAmCqc1DV
But for the author box there is no option to disable the comment count. However if you want to achieve it, you could do it in two ways. The easiest method would be to use this code
https://www.screencast.com/t/Cwvg0WZib
The code will hide the count in the author box, you just need to enter it in Theme panel->Custom Css

.td-author-counters
.td-author-comments-count {
display: none;
}

The other method is to edit this file in the theme
https://www.screencast.com/t/7mI9KMqEeoHW
There you will have to comment the lines of code mentioned, and the count will be removed.

Thanks

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