How to remove comment & rating on blog page?

Hi,

I want to remove comment & rating on every blog page. I already read here - https://www.support.waituk.com/hc/en-us/community/posts/115002286145-Is-it-possible-to-not-require-ratings-for-comments-

But some element still there such as rating star, post by, how many comment, leave comment button & ‘You must be logged in to post a comment.’ as you can see on attachment:

image
I want to delete everything, may u help me?

Thanxs

Hello,

The info you have shown in your screenshot is added by WordPress core instead of the theme itself. Hence you can remove it by adding the CSS below in your custom CSS:

.blog-single .meta-article {
display: none;
}
This will remove the stars, post by, comments count etc.

nd to remove the previous / next, add following css as well

.post-navigation .nav-links {
display: none;
}

Thank you

Hi Sanjeev,

Thank you for your reply, really appreciate it. I do follow your step & now everything is done to remove unless for :

LEAVE COMMENT
You must be logged in to post a comment.

Do you have any idea to remove it?

Also i want to put Tags on bottom of every post, i did try by follow step from here - https://codex.wordpress.org/Function_Reference/the_tags

But it will only display on top of post articles, i did try to put somewhere on your code but it still display on top of it.

Thanxs

Hello,

Please follow the steps provided here for disabling comments field: https://en.support.wordpress.com/enable-disable-comments-for-future-posts/

As for the tags, showing them in specific position will require template and css customization, I will look into adding them in the theme future theme update.

Thank you

Hi Sanjeev,

To disabling comments still not working as i follow that link. Maybe have to find manually spesific code? what do you think?

Thanxs

  • latest -

i found it to disable by using plugin.:slight_smile: