Viewing 13 reply threads
You must be logged in to reply to this topic.
How do I eliminate the reference to “No Comments” on the timeline view of the blog?
Hello,
Please add these lines into your custom css box(Specular > General Options):
.blog-article.standard-style .info li:nth-child(3) {
display: none;
}
Best regards!
Hello,
Please edit the above code to this:ul.info { display: none;}
Best regards!
I would also like to do this, I found the line:
- <i class=”icon-comment-o”></i><?php echo $count ?> <?php _e(‘Comments’, ‘codeless’) ?>
in loop-timeline.php
but removing the list item didn’t remove the display (0 Comments) on the timeline view.
Thanks
Hello,
@rschierl,
It is recommended to use css code for these situations because the css code in your custom css box will not be affected by any theme update. While if you make changes to theme files, they will be overwritten by the next theme update you make.
The edit didn’t show changes because you are probably using another type of blog style. And thus it is depended by another “loop-***.php” file.
Please add this code into your custom css box:
ul.info { display: none;}
Result.
Best regards!
Hello,
Now that’s strange. This is the code responsible for it. It is tested and it does remove the categories. Maybe you are making some mistake in implementing it. Please open up a new ticket and send us your wp credentials. We will look it up for you.
Best regards!
It works when I use the console for the page and set display: none in the CSS, but not in the CSS box in wordpress. I’ll resubmit with credentials when I get home if I can’t figure it out.
Thanks
You must be logged in to reply to this topic.