How to Add Comment Number of Post in Search View

Hi,

In the past I had the number of comments showing at the front (like when they clicked into a category of blog posts or if they’re on the home page) before people clicked into the post. Here’s an example:

Is there any way to put this back onto my site (digitalnomadquest.com) ?

Also how do I make the comment size bigger?

Thanks.

Best,
Sharon

Hi Sharon,

Thanks for reaching out.

Have you removed it through custom code? If yes, you can remove the custom code to make it work again. But upon checking your site, it looks like the post meta is just hidden. Please go to Theme Options > Blog > CONTENT and toggle on the Post Meta.

Else, you can provide your admin login credentials for further checking.

Thanks!

Is there any way to remove all the red tags (in this example - personal development + thoughts)?

And possibly put the amount of comments on the bottom right hand corner? Or make it neater in some way with line breaks. Thanks!

Hello Sharon,

The categories can be removed from the post meta by adding the following CSS code in the X > Theme Options > Global CSS (http://prntscr.com/evui3r)

.p-meta>span:nth-child(3){
    display: none;
}

Adding the comments in the bottom right would require custom coding which is already beyond the scope of our support.

Please note that custom coding is outside the scope of our support. Issues that might arise from the use of custom code and further enhancements should be directed to a third party developer.

Thank you for your understanding.

Great thanks! Also do you know how to make the comments bigger?

Hey Sharon,

To make the comments font a little bigger, please make use of this code.

.x-comments-area .x-comment-content {
    font-size: 18px;
}

If you want to make the comments number a little bigger, you can make use of this code too:

.h-comments-title small {
    width: 50px;
    height: 50px;
    right: -60px;
    top: -20px;
    font-size: 30px;
    line-height: 48px;
}

Feel free to change the values if necessary.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.