Show 'Comment Count' on specific block/module

Posted in: Newspaper
Post count: 24

Hi there,

Let’s say I want to show comment count only on td_module_8, how can I do it?

Best,
Zen

Post count: 23312

Hello zen,

If you want to display the comment count only for module 8 you should use the code below and place it in Theme panel->Custom CSS area. You should hide the entire class for all website and then, for this module you should give the display:block.

The code is ->

.td-module-comments{
display:none!important;
}
.td_module_8 .td-module-comments{
display:block!important;
}

Hope this helps!

Thanks for your understanding!

Post count: 24

Hello Catalin,

Yes, it works. 🙂
Thanks for helping!

Best,
Zen

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